-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.31 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
79
80
81
{
"name": "simple-react-starter",
"version": "1.0.0",
"description": "A no-nonsense boilerplate for a react SPA.",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "concurrently -n 'F,B' -c 'magenta,blue' 'npm run dev:frontend' 'npm run dev:backend'",
"dev:frontend": "webpack-dev-server --mode development --hot",
"dev:backend": "nodemon server.js --exec 'npm run lint && node'",
"build": "npm run lint && webpack --mode production --display-error-details",
"precommit": "lint-staged",
"lint": "eslint ."
},
"engines": {
"node": ">=10"
},
"keywords": [
"react",
"webpack",
"babel",
"express",
"redux"
],
"author": {
"name": "Rob Herley",
"email": "[email protected]",
"url": "https://robherley.xyz"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-react-constant-elements": "^7.0.0-beta.51",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0-beta.51",
"babel-loader": "^8.0.0-beta.4",
"concurrently": "^3.6.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"node-sass": "^4.11.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.12.1",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"axios": "^0.18.0",
"babel-eslint": "^8.2.5",
"compression": "^1.7.2",
"express": "^4.16.3",
"morgan": "^1.9.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}