-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 885 Bytes
/
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
{
"name": "ants-simulation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"dat.gui": "^0.7.9",
"push-dir": "^0.4.1",
"three": "^0.141.0"
},
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/node": "^18.0.0",
"@types/three": "^0.141.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"raw-loader": "^4.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"scripts": {
"build": "webpack --config ./webpack.config.js --mode=production",
"start": "webpack serve --config ./webpack.config.js --mode=development",
"gh-pages": "npm run build && push-dir --dir=build --branch=gh-pages"
},
"author": "",
"license": "MIT"
}