-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.87 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "college-assignments",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-google-maps/api": "^2.13.1",
"@types/react-helmet": "^6.1.5",
"@types/uuid": "^8.3.4",
"bowser": "^2.11.0",
"firebase": "^9.12.1",
"formik": "^2.2.9",
"react": "^18.0.0",
"react-cookie": "^4.1.1",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.3",
"styled-components": "^5.3.6",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write",
"husky": "husky install && husky add .husky/pre-commit 'yarn lint-staged'",
"lint": "tsc --project tsconfig.json --noEmit && eslint --quiet --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-check": "^6.0.1",
"prettier": "^2.6.2",
"react-scripts": "5.0.1",
"stylelint": "^14.7.1",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --debug"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,html,css}": [
"prettier --write"
],
"*.css": [
"stylelint"
],
"*.scss": [
"stylelint --syntax=scss"
],
"*.{ts,tsx}": [
"bash -c tsc --project tsconfig.json --noEmit",
"eslint --quiet --fix"
],
"*.{js,jsx}": [
"eslint --quiet --fix"
]
}
}