-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 966 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
33
34
{
"name": "egg-dog-flock",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "webpack --config ./src/client/webpack.prod.js",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Luis Cossio & Patricio Salazar",
"license": "ISC",
"devDependencies": {
"@types/dat.gui": "^0.7.7",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@types/three": "^0.137.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"three": "^0.137.4",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"express": "^4.17.2"
}
}