-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1009 Bytes
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
{
"name": "my-razzle-app",
"version": "2.0.0-alpha.8",
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js",
"eslint-all": "eslint 'src/**/*.{js,jsx}'",
"prettier-all": "prettier --write 'src/**/*.{js,jsx,json,css}'"
},
"dependencies": {
"express": "^4.16.4",
"razzle": "^2.4.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.3",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^4.0.2"
},
"devDependencies": {
"eslint-plugin-jest": "^21.27.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3"
},
"lint-staged": {
"src/**/*.{js,jsx,css}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}