-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 1.12 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
{
"name": "augmint-sim",
"version": "0.0.1",
"description": "Augmint Simulator",
"homepage": ".",
"private": true,
"dependencies": {
"chart.js": "2.8.0",
"random-seed": "0.3.0"
},
"scripts": {
"build:development": "webpack --mode development",
"build:production": "webpack --mode production",
"serve:production":
"webpack-dev-server --mode production --host 0.0.0.0 --progress --lazy --colors --content-base dist/ --config webpack.config.js",
"test": "echo tests were invoked but no tests yet. Returning success.",
"dev":
"webpack-dev-server --mode development --host 0.0.0.0 --progress --colors --content-base dist/ --watch --hot --inline --config webpack.config.js",
"dev-win":
"set NODE_ENV=development & webpack-dev-server --host 0.0.0.0 --progress --colors --content-base dist/ --watch --hot --inline --config webpack.config.js"
},
"devDependencies": {
"copy-webpack-plugin": "4.5.3",
"webpack": "4.29.6",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.2.1"
}
}