-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"dependencies": {
"cannon-es": "0.18.0",
"cannon-es-debugger": "0.1.4",
"modern-normalize": "1.1.0",
"obset": "5.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"three": "0.136.0",
"zustand": "3.6.8"
},
"devDependencies": {
"@babel/runtime": "7.16.7",
"@snowpack/plugin-react-refresh": "2.5.0",
"@snowpack/plugin-typescript": "1.2.1",
"@types/dat.gui": "0.7.7",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/snowpack-env": "2.3.4",
"@types/three": "0.136.0",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"eslint": "8.6.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-unicorn": "40.0.0",
"prettier": "2.5.1",
"prettier-plugin-jsdoc": "0.3.30",
"prettier-plugin-organize-imports": "2.3.4",
"snowpack": "3.8.8",
"typescript": "4.6.0-dev.20220103"
},
"scripts": {
"build": "snowpack build",
"fmt": "prettier -u --config .prettierrc --plugin=prettier-plugin-jsdoc --plugin=prettier-plugin-organize-imports -w ./src/**/*.{d.ts,ts,tsx,json}",
"lint": "eslint ./src --ext .d.ts,.ts,.tsx",
"lint:fix": "eslint ./src --ext .d.ts,.ts,.tsx --fix",
"nuke": "node ./nuke.mjs",
"postinstall": "pnpm nuke",
"start": "snowpack dev",
"tidy": "pnpm lint:fix && pnpm fmt"
},
"type": "module"
}