32 lines
883 B
JSON
32 lines
883 B
JSON
{
|
|
"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",
|
|
"dev": "webpack serve --config ./webpack.config.js --mode=development",
|
|
"gh-pages": "npm run build && push-dir --dir=build --branch=gh-pages"
|
|
},
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|