-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.65 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.65 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
97
98
99
100
101
102
103
{
"name": "react-express-starter",
"version": "0.0.1",
"description": "React + Express starter template",
"main": "src/main.js",
"homepage": "https://github.com/bharani91/react-express-starter",
"author": "Bharani M",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bharani91/react-express-starter"
},
"keywords": [
"react",
"express",
"postcss",
"starter template"
],
"scripts": {
"start": "better-npm-run start",
"build:start": "better-npm-run build:start",
"build": "rimraf dist && better-npm-run build",
"postinstall": "npm run build"
},
"standard": {
"globals": [
"__DEV__"
],
"plugins": [
"react"
],
"rules": {
"react/jsx-no-bind": 2,
"react/no-did-update-set-state": 2,
"react/no-unknown-property": 2,
"react/prop-types": 2
}
},
"betterScripts": {
"start": {
"command": "node server.development",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "webpack --config webpack.config.production.js --progress --profile --colors",
"env": {
"NODE_ENV": "production"
}
},
"build:start": {
"command": "node server.production",
"env": {
"NODE_ENV": "production"
}
}
},
"devDependencies": {
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.7.1"
},
"dependencies": {
"lodash": "^4.5.0",
"babel-core": "^6.5.2",
"babel-polyfill": "^6.5.0",
"babel-runtime": "^6.5.0",
"express": "^4.12.3",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"react-bootstrap": "^0.28.3",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"style-loader": "^0.12.3",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"autoprefixer": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"bootstrap-loader": "^1.0.10",
"bootstrap-sass": "^3.3.6",
"css-loader": "^0.19.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.9.0",
"node-sass": "^3.4.2",
"postcss-loader": "^0.6.0",
"postcss-nested": "^1.0.0",
"better-npm-run": "0.0.7"
}
}