-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "React starter kit",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config ./webpack.prod.config.js --progress --colors",
"start": "node server.js",
"dev": "webpack-dev-server --hot --history-api-fallback --open",
"test": "mocha"
},
"keywords": [
"react"
],
"author": "shabeeb",
"license": "MIT",
"dependencies": {
"express": "^4.15.3",
"loglevel": "^1.4.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"enhanced-resolve": "^3.4.1",
"enzyme": "^2.9.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^0.11.2",
"jsdom": "^11.1.0",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^6.0.6",
"sinon": "^3.2.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
}
}