forked from ScottyLabs/cmueats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.37 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
{
"name": "cmueats",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/material-ui": "^0.21.14",
"@types/react": "^18.2.37",
"@types/react-router-dom": "^5.3.3",
"axios": "^1.6.2",
"css-loader": "^6.7.3",
"eslint-config-airbnb-typescript": "^17.0.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.4",
"mapkit-react": "^1.14.0",
"netlify-plugin-mapkitjs-token": "^1.2.0",
"prettier-eslint": "^16.1.2",
"prettier-eslint-cli": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.19.0",
"react-transition-group": "^4.4.5",
"serve": "^14.2.1",
"ts-migrate": "^0.1.35",
"web-vitals": "^3.5.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest",
"eject": "vite eject",
"lint": "npx eslint src",
"lint-fix": "npx eslint --fix src",
"format": "prettier --write src"
},
"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": {
"@types/jsonwebtoken": "^9.0.5",
"@types/luxon": "^3.3.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.3.0",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-pwa": "^0.16.7",
"vite-plugin-svgr": "^4.1.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}