-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.82 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
{
"name": "chrono-wallet",
"version": "1.0.0",
"description": "Secure wallet for storing tokens",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --content-base ./src",
"dev": "webpack-dev-server --config webpack.config.js --content-base ./src --inline --hot --host 0.0.0.0",
"test": "echo \"Error: no test specified\" && exit 1",
"stage": "NODE_ENV=stage webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChronoBank/ChronoWallet.git"
},
"keywords": [
"chronobank"
],
"author": "",
"license": "GNU General Public License",
"bugs": {
"url": "https://github.com/ChronoBank/ChronoWallet/issues"
},
"homepage": "https://github.com/ChronoBank/ChronoWallet#readme",
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-regenerator": "^6.16.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bignumber.js": "^3.0.1",
"bluebird": "^3.4.6",
"copy-webpack-plugin": "^4.0.1",
"immutable": "^3.8.1",
"moment": "^2.17.1",
"raw-loader": "^0.5.1",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise-middleware": "^3.2.0",
"redux-thunk": "^2.1.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"eslint": "^3.10.0",
"eslint-plugin-react": "^6.6.0"
}
}