-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 KB
/
package.json
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
65
66
67
68
69
{
"name": "tic-tac-toe-dapp",
"version": "1.0.0",
"main": "index.js",
"license": "AGPL-3.0",
"description": "amazing tic tac toc dapp.",
"sideEffects": false,
"scripts": {
"build": "next build",
"dev": "next -p 1110",
"prepare": "husky install",
"spell-check": "cspell lint . --no-progress",
"analyze": "NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-unknown --ignore-path ./.gitignore --write "
]
},
"dependencies": {
"@react-spring/three": "^9.7.2",
"@react-spring/web": "^9.7.2",
"@react-three/drei": "9.57.2",
"@react-three/fiber": "^8.13.0",
"@react-three/postprocessing": "^2.11.4",
"@types/three": "^0.152.0",
"lamina": "^1.1.23",
"leva": "^0.9.34",
"meshline": "^3.1.6",
"next": "^13.4.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-refs": "^1.0.1",
"styled-components": "^6.0.0-rc.1",
"three": "^0.152.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.1.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"cspell": "^6.31.1",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=15"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}