-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.73 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
{
"name": "stock-trade-app",
"version": "0.1.0",
"private": true,
"homepage": "https://nick-dave-turner.github.io/stock-trade-app",
"dependencies": {
"gh-pages": "^2.0.1",
"jest-styled-components": "^6.3.1",
"polished": "^3.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"flow-bin": "^0.98.0",
"husky": "^2.1.0",
"jest": "^24.7.1",
"jest-enzyme": "^7.0.2",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"flow": "flow",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,json,css,scss,md}"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}