-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.79 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.79 KB
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
91
92
93
94
95
96
{
"name": "modular-starter-react",
"version": "1.0.0",
"description": "Modular starter kit for isomorphic react + redux apps",
"scripts": {
"start": "concurrently \"npm run client:prod\" \"npm run server:prod\"",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\"",
"test": "npm run test:client:lint --silent",
"server:prod": "node src/server/main.js",
"server:dev": "nodemon src/server/main.js --watch \"server/**/*.js\" ",
"client:prod": "webpack --config tools/webpack.config.prod.js",
"client:dev": "webpack-dev-server --config tools/webpack.config.dev.js --hot --inline",
"test:client:lint": "eslint src/client/**/*.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modularcode/modular-starter-react.git"
},
"keywords": [
"modular",
"react",
"reactjs",
"flux",
"redux",
"starter",
"kit",
"boilerplate",
"isomporhic",
"universal",
"javascript",
"js",
"jsx",
"node",
"webpack"
],
"author": "Gevorg Harutyunyan <modularcoder@gmail.com>",
"contributors": [
"Arman Yeghiazaryan <email@gmail.com>",
"Gevorg Harutyunyan <modularcoder@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/modularcode/modular-starter-react/issues"
},
"homepage": "https://github.com/modularcode/modular-starter-react#readme",
"dependencies": {
"dotenv": "^2.0.0",
"normalize.css": "^5.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-router": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"concurrently": "^3.1.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"node-sass": "^3.11.2",
"postcss-loader": "^1.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-3"
],
"plugins": [
"transform-es2015-modules-commonjs",
"transform-async-to-generator",
"transform-runtime"
]
}
}