-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "bp-webapp",
"version": "1.0.0",
"description": "Express + React + Webapp + Yarn",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"dist": "webpack --env=prod",
"dist:clean": "rm -rf ./public/dist ./public/index.html",
"start": "NODE_ENV=production node src/server",
"dev": "NODE_ENV=development nodemon src/server --watch src/server",
"eslint": "eslint src/**/*.js",
"test": "mocha ./test",
"webpack": "webpack --env=dev --watch --colors",
"webpack:production": "webpack --env=prod --progress --colors --watch"
},
"devDependencies": {
"axios": "^0.16.2",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "6.23.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.5.2",
"dotenv": "4.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "1.7.1",
"eslint-plugin-compat": "^1.0.3",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "7.0.1",
"html-webpack-plugin": "^2.29.0",
"mocha": "^5.2.0",
"nodemon": "^1.11.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"uglify-js": "git://github.com/mishoo/UglifyJS2",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1",
"workbox-webpack-plugin": "^3.4.1"
},
"dependencies": {
"express": "^4.15.3",
"morgan": "^1.8.2",
"winston": "^2.3.1"
}
}