-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "codename-mars",
"version": "1.0.4",
"description": "Mars game",
"author": {
"name": "Juan Jose Alonso",
"email": "kernel.no.found@gmail.com"
},
"scripts": {
"clear": "rm -rf dist/",
"count": "find src -name '*.js' | xargs wc -l | sort -r",
"build": "npm run clear && webpack -p",
"dev": "webpack-dev-server --port 8086 --watch-poll --content-base dist/",
"start": "npm run build && http-server ./dist -p $PORT",
"tunnel": "ngrok http --host-header=rewrite 8086"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"copy-webpack-plugin": "^4.5.1",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"ngraph.graph": "0.0.14",
"ngraph.path": "^1.0.2",
"ngrok": "^3.0.1",
"phaser": "^3.10.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.1.4"
},
"keywords": [
"webpack",
"babel",
"starter",
"source map",
"explorer",
"count",
"loc"
],
"repository": {
"type": "git",
"url": "https://github.com/piecioshka/boilerplate-babel-webpack"
},
"dependencies": {
"merge-jsons-webpack-plugin": "^1.0.15"
}
}