forked from Azaeres/etherion-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "etherion-lab",
"version": "1.0.18",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest _static",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@ducanh2912/next-pwa": "^9.4.0",
"@pixi/filter-advanced-bloom": "^5.1.1",
"@pixi/filter-pixelate": "^5.1.1",
"@pixi/react": "^7.1.0",
"@pixi/react-animated": "^7.1.0",
"@pixi/ui": "^0.9.0",
"next": "^13.4.12",
"pixi-react-parallax": "^1.0.13",
"pixi.js": "^7.2.4",
"planck": "piqnt/planck.js",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-event-hook": "^3.1.2",
"react-hotkeys-hook": "^4.4.1",
"react-responsive": "^9.0.2",
"react-spring": "^9.7.2",
"sharp": "^0.32.4",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.12",
"@types/node": "^20.4.7",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@welldone-software/why-did-you-render": "^7.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.13",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"sideEffects": false
}