-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "reactjs-projects",
"version": "0.0.1",
"description": "React projects for learning",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint app",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --progress --colors --hot --inline --watch --history-api-fallback",
"start:prod": "webpack && node server.js"
},
"keywords": [
"react",
"learning",
"projects",
"javascript"
],
"author": "Johann Billar <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.14.0",
"compression": "^1.6.2",
"express": "^4.14.0",
"if-env": "^1.0.0",
"lodash": "^4.17.2",
"prop-types": "^15.5.8",
"react": "^15.5.0",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-transition-group": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.4",
"react-router": "^4.0.0",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.21.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"jest": "^19.0.2",
"node-sass": "^3.10.1",
"react-test-renderer": "^15.4.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.1"
},
"repository": {
"type": "git",
"url": "git://github.com/JohannBillar/reactjs-projects.git"
},
"bugs": {
"url": "https://github.com/JohannBillar/reactjs-projects/issues"
},
"homepage": "https://github.com/JohannBillar/reactjs-projects#readme"
}