-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.18 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.18 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "5050",
"version": "2.0.3",
"description": "5050Labs DApp - built on Peerplays",
"scripts": {
"start-dev": "export NODE_ENV=development&&export NODE_CONFIG=dev&&webpack-dev-server --config webpack/webpack.config.js",
"start-stage": "export NODE_ENV=development&&export NODE_CONFIG=stage&&webpack-dev-server --config webpack/webpack.config.js",
"start-dev-bash": "NODE_ENV=development NODE_CONFIG=dev webpack-dev-server --config webpack/webpack.config.js",
"start-stage-bash": "NODE_ENV=development NODE_CONFIG=stage webpack-dev-server --config webpack/webpack.config.js",
"build-dev": "export NODE_ENV=development&&export NODE_CONFIG=dev&&webpack --config webpack/webpack.config.js",
"build-stage": "export NODE_ENV=production&&export NODE_CONFIG=stage&&webpack --config webpack/webpack.config.js",
"build-dev-server": "NODE_ENV=production NODE_CONFIG=dev webpack --config webpack/webpack.config.js",
"build-stage-server": "NODE_ENV=production NODE_CONFIG=stage webpack --config webpack/webpack.config.js",
"build": "export NODE_ENV=development&& export NODE_CONFIG=dev&&webpack --config webpack/webpack.config.js",
"start": "serve ./dist -p 8080",
"prod": "serve ./dist -s",
"lint": "eslint . --ext .js,.jsx",
"ngrok": "ngrok http -region eu 8080",
"test": "jest",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"redux",
"async"
],
"author": "Didier Franc",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^25.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"css-loader": "^3.4.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^3.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.5",
"git-rev-sync": "^1.9.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.0.0",
"lint-staged": "^4.0.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"preload-webpack-plugin": "^3.0.0-beta.3",
"prettier": "^1.5.2",
"react-test-renderer": "^16.0.0",
"sass-loader": "^6.0.6",
"serve": "^11.1.0",
"style-loader": "^0.19.1",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.8",
"countdown": "^2.6.0",
"counterpart": "^0.18.4",
"immutable": "^3.8.2",
"indexeddbshim": "^3.4.0",
"jquery": "^3.2.1",
"jquery-datepicker": "^1.11.5",
"jquery-timepicker": "^1.3.3",
"moment": "^2.20.1",
"moment-countdown": "0.0.3",
"offline-plugin": "^5.0.7",
"peerplaysjs-lib": "peerplays-network/peerplaysjs-lib#5050-beatrice-merge",
"prop-types": "^15.6.0",
"randomstring": "^1.1.5",
"react": "^16.5.0",
"react-animate-on-scroll": "^2.1.5",
"react-code-splitting": "^1.1.1",
"react-custom-properties": "^1.2.0",
"react-datetime": "^2.14.0",
"react-dom": "^16.5.0",
"react-interpolate-component": "^0.11.0",
"react-marquee": "^1.0.0",
"react-notification-system": "0.2.17",
"react-notifications": "1.4.3",
"react-odometerjs": "2.1.0",
"react-redux": "^5.0.5",
"react-render-in-browser": "^1.0.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-tippy": "^1.3.1",
"react-translate-component": "^0.14.0",
"reactjs-popup": "^1.0.5",
"redux": "^3.7.1",
"redux-form": "^7.2.0",
"redux-modules": "^1.1.0",
"redux-thunk": "^2.2.0",
"rodal": "1.6.3",
"tapable": "^1.1.3"
}
}