-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.84 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
{
"name": "react-webpack-skeleton",
"description": "A skeleton for a React app using Webpack 3.",
"version": "1.0.0",
"license": "MIT",
"author": [
{
"name": "Romero Fantastico",
"email": "[email protected]",
"url": "https://github.com/fokye"
}
],
"repository": {
"type": "git",
"url": "git://github.com/fokye/react-webpack-skeleton.git"
},
"scripts": {
"build": "scripts/build",
"coverage": "scripts/coverage",
"documentation": "scripts/documentation",
"lint": "scripts/lint",
"security": "scripts/security",
"start": "scripts/start",
"test": "scripts/test"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-istanbul": "4.1.4",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.1",
"chai-enzyme": "0.8.0",
"css-loader": "0.28.5",
"css-modules-require-hook": "4.0.6",
"enzyme": "2.9.1",
"eslint": "4.5.0",
"eslint-loader": "1.9.0",
"eslint-plugin-react": "7.3.0",
"jsdoc": "3.5.4",
"junit-merge": "1.1.0",
"mocha": "3.5.0",
"nyc": "11.1.0",
"react-test-renderer": "15.6.1",
"sinon": "3.2.1",
"sinon-chai": "2.13.0",
"snyk": "1.40.1",
"style-loader": "0.18.2",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
},
"dependencies": {
"prop-types": "15.5.10",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-thunk": "2.2.0"
},
"nyc": {
"include": [
"**/index.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}