-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.26 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
49
50
51
52
53
54
55
{
"name": "hodl-the-coin",
"version": "1.0.0",
"description": "Hold the Coin",
"main": "main.js",
"scripts": {
"serve": "npm run clean && npm run copy && webpack-dev-server --content-base build/ --history-api-fallback --inline --mode development",
"serve:ardor": "npm run clean:ardor && npm run copy:ardor && webpack-dev-server --content-base build-ardor/ --history-api-fallback --inline --mode development --env.COIN=ARDOR",
"serve:noclean": "webpack-dev-server --content-base build/ --history-api-fallback --inline --mode development",
"build:js:dev": "webpack --config ./webpack.config.js --mode development",
"build:js:prod": "webpack --config ./webpack.config.js --mode production",
"build:js:prod:ardor": "webpack --config ./webpack.config.js --mode production --env.COIN=ardor",
"copy": "node scripts/copy",
"copy:ardor": "node scripts/copy-ardor",
"clean": "rm -rf build",
"clean:ardor": "rm -rf build-ardor",
"build": "npm run clean && npm run build:js:dev && npm run copy",
"build:prod": "npm run build:js:prod && npm run copy",
"build:prod:ardor": "npm run build:js:prod:ardor && npm run copy:ardor",
"lint": "eslint -c .eslintrc -f checkstyle app > eslint.xml",
"lint:local": "eslint app",
"stats": "webpack -p --config ./webpack.prod.config.js --profile --json > stats.json",
"build:all": "npm run build:prod && npm run build:prod:ardor"
},
"author": "Andreas Teufel <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"fs-extra": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"offline-plugin": "^5.0.0-0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.4",
"raw-loader": "^0.5.1",
"script-loader": "^0.7.2",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"axios": "^0.18.0",
"es6-promise": "^4.2.4",
"firebase": "^4.12.1",
"mobile-detect": "^1.4.1",
"phaser": "~3.5.0"
}
}