-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.65 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
{
"name": "heroes",
"version": "1.0.0",
"description": "Simple application to showcase how to achieve universal rendering and routing with React and Express.",
"main": "src/server.jsx",
"repository": "[email protected]:jconroy/heroes.git",
"scripts": {
"start": "NODE_ENV=production nodemon src/server.jsx --exec babel-node",
"start-dev": "npm run start-dev-hmr",
"start-dev-single-page": "http-server src/static",
"start-dev-hmr": "webpack-dev-server --progress --inline --hot",
"build": "NODE_ENV=production webpack -p && babel src -d build --copy-files",
"serve": "node build/server.js",
"postinstall": "npm run build",
"test": "./node_modules/mocha/bin/mocha && ./node_modules/.bin/eslint --ext .js --ext .jsx src"
},
"author": "Jason Conroy",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"ejs": "^2.5.1",
"express": "^4.14.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.6.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.0",
"http-server": "^0.9.0",
"mocha": "^3.1.1",
"nodemon": "^1.10.2",
"react-hot-loader": "^1.3.0",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"react",
"es2015"
]
}
}