-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "simple-express-react",
"version": "1.0.0",
"description": "A simple project template with Express and React",
"main": "server.js",
"scripts": {
"lint": "./node_modules/.bin/snazzy",
"build": "./node_modules/.bin/webpack",
"build-prod": "./node_modules/.bin/webpack --config webpack-prod.config.js --progress --colors",
"clean": "rm ./public/js/bundle.js & rm ./public/js/bundle.js.map",
"start": "node server.js",
"pretest": "npm run lint",
"prepush": "npm test",
"test": ""
},
"author": "Matthew Elphick",
"license": "ISC",
"private": true,
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"morgan": "^1.7.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.8.1"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.5.0",
"http-proxy": "^1.15.1",
"husky": "^0.11.7",
"snazzy": "^5.0.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.2"
}
}