-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 910 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
{
"name": "glazejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"buildApp": "webpack --config webpack.app.js",
"watch": "webpack --watch",
"dev": "webpack-serve --hmr false ./webpack.dev.js --host 0.0.0.0",
"validate-typescript": "tsc --noEmit",
"game": "./scripts/startChrome.sh http://localhost:8000"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"terser-webpack-plugin": "^4.1.0",
"ts-loader": "5.3.3",
"ts-shader-loader": "^1.0.6",
"typescript": "^3.7",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-serve": "^2.0.3",
"worker-loader": "^2.0.0"
},
"dependencies": {}
}