-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "gamejam",
"version": "1.0.0",
"description": "Basic three.js engine bindings",
"main": "index.js",
"scripts": {
"dev": "copyfiles \"assets/**/*\" \"dist/client\" && copyfiles index.html dist/client/ && webpack serve --config ./src/client/webpack.dev.js",
"build": "copyfiles \"assets/**/*\" \"dist/client\" && copyfiles index.html dist/client/ && webpack --config ./src/client/webpack.prod.js",
"start": "node dist/server/server.js",
"build-run": "npm run build && npm run start",
"lint.client": "eslint --config src/client/.eslintrc.js \"src/client/**/*.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/dat.gui": "^0.7.6",
"express": "^4.17.1",
"fairygui-three": "^0.7.0",
"three": "^0.129.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/three": "^0.129.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"ts-loader": "^9.2.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}