-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.76 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "three-game",
"version": "1.0.0",
"main": "src/index.ts",
"dependencies": {
"browserslist": "^4.18.1",
"camelcase": "^6.2.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"mini-css-extract-plugin": "^2.4.5",
"nanoid": "^3.0.0",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.0.1",
"prompts": "^2.4.2",
"resolve": "^1.20.0",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.3.0",
"semver": "^7.3.5",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-dev-server": "^4.6.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
},
"scripts": {
"start": "node scripts/start.js",
"server": "node scripts/server.js",
"build-final": "node scripts/build.js && npx roadroller -M 512 -O2 build/main.js -o build/main.js && advzip -4 build/build.zip -a build/index.html build/main.js && stat -f%z build/build.zip",
"build-f-norr": "node scripts/build.js && advzip -4 build/build.zip -a build/index.html build/main.js && stat -f%z build/build.zip",
"build": "node scripts/build.js && stat -f%z build/main.js",
"test": "node scripts/test.js --env=jsdom",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,json}'",
"build-gh": "BUILD_PATH=docs node scripts/build.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/three": "^0.156.0",
"@types/uuid": "^9.0.2",
"@types/audioworklet": "^0.0.50",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.0.0-alpha.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-minimizer-webpack-plugin": "^4.4.0",
"prettier": "^3.0.0",
"react-dev-utils": "^12.0.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.0",
"webpack-glsl-minify": "^1.5.0"
}
}