-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"name": "cube-counter",
"version": "1.0.0",
"main": "index.js",
"private": true,
"author": "rarula",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development",
"start-prod": "webpack-dev-server --mode production",
"build": "webpack --mode development",
"build-prod": "webpack --mode production",
"predeploy": "yarn run build-prod",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"three": "^0.172.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.0",
"@types/three": "^0.172.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}