-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 2.76 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
{
"name": "formidable-react-app-starter",
"version": "0.0.1",
"license": "MIT",
"repository": "https://github.com/FormidableLabs/formidable-react-starter",
"scripts": {
"build": "npm run clean && webpack --config configuration/webpack/webpack.config.prod.js",
"clean": "rimraf build",
"dev": "node server/development.js",
"lint": "eslint src",
"prod": "cross-env NODE_ENV=production PORT=3000 node server/production.js",
"test": "nyc --reporter=lcov --reporter=text mocha test/.setup.js test/**/*.spec.js"
},
"engineStrict": true,
"engines": {
"npm": ">=3.0.0"
},
"eslintConfig": {
"extends": "./configuration/eslint/eslint.js"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"dependencies": {
"express": "^4.14.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.11.12",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"css-modules-require-hook": "^4.0.1",
"enzyme": "^2.4.1",
"eslint": "^2.10.2",
"eslint-config-formidable": "^2.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"file-loader": "^0.9.0",
"filesize": "^3.3.0",
"gzip-size": "^3.0.0",
"html-webpack-inline-source-plugin": "0.0.6",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.4.1",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"postcss-loader": "^1.2.2",
"promise": "^7.1.1",
"react-addons-test-utils": "^15.3.0",
"redbox-react": "^1.3.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.7.1",
"url-loader": "^0.5.7",
"web-app-manifest-loader": "^0.1.1",
"webpack": "^2.2.0-rc.4",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"whatwg-fetch": "^2.0.1"
}
}