-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "react-express-hybrid",
"version": "1.1.0",
"description": "A highly opinionated project/folder structure to handle multiple React front-end apps and back-end API on a same server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"start": "npm run compile:server && cross-env NODE_ENV=development node ./bin/www",
"build": "node ./config/build",
"start:prod": "cross-env NODE_ENV=production node ./bin/www",
"compile:server": "babel ./src/server/ --out-dir ./bin/www/",
"lint:fix": "eslint . --fix",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giridharangm/react-express-hybrid.git"
},
"keywords": [
"react",
"express",
"hmr"
],
"author": "Giridharan GM",
"license": "MIT",
"bugs": {
"url": "https://github.com/giridharangm/react-express-hybrid/issues"
},
"homepage": "https://github.com/giridharangm/react-express-hybrid#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.3.2",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"cross-env": "^3.2.3",
"css-loader": "^0.26.2",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"hot-module-accept": "^1.1.1",
"html-webpack-plugin": "^2.28.0",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"chalk": "^1.1.3",
"express": "^4.15.1",
"ncp": "^2.0.0",
"opn": "^4.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}