-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 3.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tokenplay",
"version": "0.1.0",
"private": true,
"devDependencies": {
"awesome-node-loader": "^1.1.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.9",
"electron-builder": "^20.15.1",
"electron-packager": "^12.1.0",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"extract-text-webpack-plugin": "^3.0.2",
"flow-bin": "^0.57.0",
"node-sass": "^4.7.2",
"prettier": "1.8.2",
"react-hot-loader": "^4.0.0",
"react-test-renderer": "16.1.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"svg-url-loader": "^2.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.6.2",
"wait-on": "^2.1.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"scripts": {
"web": "webpack-dev-server --config web/webpack.config.js",
"build-web": "webpack --config web/webpack.prod.config.js && rm -rf web/dist/assets && cp -R src/assets web/dist/",
"build-electron": "webpack --config web/webpack.electron.config.js && rm -rf web/dist/assets && cp -R src/assets web/dist/ && rm -rf electron/build && rm -rf tmp-build && mkdir tmp-build && cp -R electron/* tmp-build/ && cp -R web/dist/* tmp-build/ && mv tmp-build electron/build && mkdir electron/build/brwc && cp -R src/brwc/BRWC.exe electron/build/brwc/BRWC.exe",
"format": "prettier --write --single-quote --print-width=120 --parser=flow --tab-width=2 \"**.{js,jsx}\"",
"electron": "node node_modules/electron/cli.js electron/",
"lint": "node node_modules/eslint/bin/eslint.js src/",
"package-win": "node node_modules/.bin/electron-packager electron/build tokenplay --asar --overwrite --platform=win32 --arch=x64 --prune=true --out=release-builds --version-string.CompanyName=TokenPlay --version-string.FileDescription=CE --version-string.ProductName=\"TokenPlay\"",
"pack": "build --dir",
"dist": "node node_modules/.bin/build",
"cp-elect": "cp -R web/dist/app.* dist/win-unpacked/resources/app/ && cp -R electron/electron.js dist/win-unpacked/resources/app/"
},
"dependencies": {
"@aedart/js-ioc": "^1.2.2",
"bignumber.js": "^7.2.1",
"debug": "^3.1.0",
"electron": "^1.8.6",
"js-cookie": "^2.2.0",
"lodash": "^4.17.10",
"mobx": "^3.5.1",
"mobx-react": "^4.4.2",
"mobx-react-router": "^4.0.1",
"moment": "^2.20.1",
"normalize.css": "^8.0.0",
"numeral": "^2.0.6",
"phoenix-socket": "^1.2.3",
"prop-types": "^15.6.0",
"rc-swipeout": "^2.0.4",
"react": "16.2.0",
"react-datepicker": "^1.5.0",
"react-dom": "^16.1.1",
"react-html5video": "^2.5.1",
"react-id-swiper": "^1.6.1",
"react-modal": "^3.3.1",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"whatwg-fetch": "^2.0.4",
"wolfy87-eventemitter": "^5.2.4"
},
"engines": {
"node": ">=6.0.0"
},
"browser": {
"fs": false,
"child_process": false
},
"build": {
"appId": "com.app.tokenplay",
"directories": {
"output": "dist",
"app": "electron/build"
},
"win": {
"target": "nsis",
"asar": false
}
},
"license": "SEE LICENSE IN LICENSE.txt"
}