-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "dice-3d",
"version": "1.0.0",
"description": "Roll a dice in 3d",
"main": "index.ts",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"dev": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "Shubidumdu",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.0",
"@types/three": "^0.149.0",
"@types/webpack": "^5.28.0",
"@webpack-cli/generators": "^3.0.1",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"cannon-es": "^0.20.0",
"three": "^0.150.1"
}
}