This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.85 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": "cappuccino-ticket",
"version": "0.5.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "yarn prettier && yarn eslint",
"lint:check": "yarn prettier:check && yarn eslint:check",
"prettier": "prettier src --write",
"prettier:check": "prettier src --check",
"eslint": "eslint src --fix",
"eslint:check": "eslint src"
},
"dependencies": {
"@afes-website/docs": "^3.2.0",
"@aspida/axios": "^1.7.1",
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"moment": "^2.29.1",
"qrcode": "^1.4.4",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"sass": "^1.38.2",
"typescanner": "^0.3.4"
},
"devDependencies": {
"@types/node": "^14.14.34",
"@types/qrcode": "^1.4.1",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.2.1",
"react-svg-loader": "^3.0.3",
"typescript": "^4.2.3"
},
"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": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}