This repository has been archived by the owner on Jun 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-boilerplate",
"version": "0.10.0",
"description": "Express, React, code-splitting, hot-reload, PostCSS, Linter, Babel",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=\"development\" npx nodemon server --exec babel-node --watch server -e js,graphql",
"serve": "NODE_ENV=\"production\" node dist/server/index.js",
"serve:docker": "npx pm2-runtime config/ecosystem.config.json --production",
"build": "npx babel server -d dist/server",
"build:app": "npx webpack-cli --config config/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 0",
"test:app": "jest",
"precommit": "lint-staged",
"stats": "webpack-cli --config ./config/webpack.prod.js --json > stats.json"
},
"author": "nure,",
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "precommit",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"hpp": "^0.2.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-router-dom": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-react-displayname": "0.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.5.0",
"nodemon": "^1.18.9",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"resolve-url-loader": "^3.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-dev-middleware": "^3.5.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^4.1.1"
}
}