-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.25 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
82
{
"name": "swr-poc",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@fortawesome/react-fontawesome": "0.1.11",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/jest": "24.0.0",
"@types/lodash": "4.14.161",
"@types/memoizee": "0.4.4",
"@types/node": "12.0.0",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@types/reactstrap": "8.5.1",
"@types/uuid": "8.3.0",
"ahooks": "2.5.0",
"axios": "0.20.0",
"bootstrap": "4.5.2",
"http-proxy-middleware": "1.0.5",
"husky": "4.2.5",
"jquery": "3.5.1",
"json-server": "0.16.1",
"lodash": "4.17.20",
"memoizee": "0.4.14",
"npm-run-all": "4.1.5",
"popper.js": "1.16.1",
"prettier": "2.1.1",
"pretty-quick": "3.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-flip-toolkit": "7.0.12",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.3",
"reactstrap": "8.5.1",
"source-map-explorer": "2.5.0",
"swr": "0.4.2",
"typescript": "3.9.7",
"unstated-next": "1.1.0",
"uuid": "8.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"clean": "rm -rf build",
"reinstall": "rm -rf node_modules && yarn",
"check": "run-s format:check lint typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "run-s 'lint --fix'",
"typecheck": "tsc",
"api": "cp api/db.template.json api/db.json && json-server -d 1000 -p 4500 -w api/db.json"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}