-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.36 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
{
"name": "iso-react",
"version": "1.0.0",
"description": "Isomorphic React js app",
"main": "index.js",
"scripts": {
"dev": "node_modules/.bin/webpack-dev-server --config webpack.config.js",
"lint": "node_modules/.bin/eslint -c .eslintrc.json './source/**/*.{js,jsx}'",
"start": "node_modules/.bin/nodemon source/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:cover": "node_modules/.bin/istanbul"
},
"author": "Paul Doyle",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"handlebars": "^4.0.6",
"history": "^4.6.1",
"node-jsx": "^0.13.3",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^7.0.0",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-airbnb": "^2.2.3",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"css-loader": "^0.28.0",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.0",
"fs-extra": "^2.1.2",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"nsp": "^2.6.3",
"nyc": "^10.2.0",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"redux-devtools": "^3.4.0",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"supertest": "^3.0.0",
"watch": "^1.0.2",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"nyc": {
"extensions": [
".jsx",
".es6"
],
"exclude": [
"**/.setup.js",
"**/test/css-null-compiler.js"
],
"lines": 100,
"branches": 100,
"functions": 100,
"statements": 100
}
}