-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "testing-with-jest",
"type": "module",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/main.jsx",
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "^5.14.11",
"@mui/material": "latest",
"axios": "^1.5.1",
"chart.js": "^4.4.0",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"lowdb": "^6.1.1",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@vitejs/plugin-react": "latest",
"eslint": "latest",
"eslint-config-react-app": "latest",
"typescript": "latest",
"vite": "latest",
"vite-plugin-eslint": "latest",
"vitest": "latest"
},
"scripts": {
"start": "vite",
"test": "vitest",
"build": "NODE_OPTIONS=--max_old_space_size=4096 vite build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"globals": {
"google": "readonly"
},
"extends": "react-app"
}
}