forked from Neufund/ico-transparency-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.21 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
{
"name": "ico-transparency-monitor",
"version": "0.1.0",
"private": true,
"dependencies": {
"FileSaver": "^0.10.0",
"axios": "^0.16.2",
"bignumber.js": "^4.1.0",
"canvg-fixed": "^1.0.0",
"chart.js": "^1.1.1",
"css-loader": "^0.27.3",
"file-loader": "^0.10.1",
"file-saver": "^1.3.3",
"gini": "^1.1.7",
"html2canvas": "^0.5.0-beta4",
"htmlshot": "^1.0.1",
"ignore-styles": "^5.0.1",
"jquery": "^3.2.1",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"moment": "^2.0.0",
"node-sass": "^4.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.6.0",
"react-chartjs": "^0.8.0",
"react-dom": "^15.5.4",
"react-facebook-pixel": "^0.1.0",
"react-flexbox-grid": "^1.1.3",
"react-fontawesome": "^1.6.1",
"react-ga": "^2.2.0",
"react-infinite-scroller": "^1.1.1",
"react-modal-dialog": "^4.0.0",
"react-redux": "^3.0.0",
"react-router-dom": "^4.1.1",
"react-share": "^1.18.0",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "^3.3.0",
"recharts": "^0.20.0",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "4.2.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.0",
"sass-loader": "^6.0.0",
"url-loader": "^0.5.9",
"web3": "^0.20.1",
"web3-provider-engine": "^13.0.0",
"webpack": "^3.3.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-remove-console": "^6.8.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^0.8.0",
"chai-http": "^3.0.0",
"code-notes": "^1.0.1",
"codecov": "^2.2.0",
"copy-webpack-plugin": "^4.0.1",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.0.1",
"react-hot-loader": "next",
"react-scripts": "1.0.9",
"sinon": "^2.4.0",
"sinon-chai": "^2.12.0"
},
"scripts": {
"start": "(cp -n src/env.example.json src/env.json || true) && react-scripts start",
"serve": "NODE_ENV=development babel-node node_modules/.bin/webpack-dev-server --https --colors --progress --history-api-fallback",
"build": "NODE_ENV=production babel-node node_modules/.bin/webpack",
"test": "(cp -n src/env.example.json src/env.json || true) && NODE_ENV=test babel-node node_modules/.bin/babel-istanbul cover _mocha --delay -- --require ignore-styles --require test/mochaConfig.js ./test/**/*.test.js",
"eslint": "(cp -n src/env.example.json src/env.json || true) && eslint --ignore-path .gitignore .",
"lint": "yarn eslint",
"lint:fix": "yarn eslint --fix"
}
}