-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 880 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": "minimal-webpack-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config conf/webpack.config",
"dev": " npm run build && webpack-dev-server --config conf/webpack.config --port 3000 --hot --inline --colors"
},
"keywords": [
"boilerplate",
"webpack",
"setup",
"template"
],
"author": "Jan Bijster",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"html-webpack-plugin": "^2.21.0",
"json-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"@tensorflow/tfjs": "^0.13.1",
"lodash": "^4.17.11",
"matter-js": "^0.14.2",
"poly-decomp": "^0.3.0"
}
}