-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "skybet-test",
"version": "1.0.0",
"description": "test",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"lint": "eslint ./app/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
},
"jest": {
"mapCoverage": true,
"collectCoverageFrom": [
"app/**/*.{js,jsx}"
],
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
},
"dependencies": {
"babel-core": "6.26.0",
"cross-env": "5.0.1",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-easy-chart": "^0.3.0",
"react-hot-loader": "3.0.0-beta.6"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-react-boilerplate": "1.1.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.24.1",
"babel-watch": "^2.0.7",
"css-loader": "0.28.7",
"enzyme": "2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-loader": "1.8.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.0",
"eslint-plugin-react": "7.2.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "1.0.0",
"html-webpack-plugin": "2.30.0",
"husky": "0.14.3",
"jest": "20.0.4",
"node-sass": "4.5.3",
"open-browser-webpack-plugin": "0.0.5",
"react-addons-test-utils": "15.6.0",
"react-test-renderer": "^15.6.1",
"rimraf": "2.6.1",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"url-loader": "0.5.8",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
}
}