-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "scheduler",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"axios": "1.7.9",
"classnames": "^2.2.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"coverage": "npm test -- --coverage --watchAll=false"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.3.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.0.0",
"globals": "13.24.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^1.5.0",
"mock-socket": "^8.0.5",
"sass": "1.59.2",
"vite": "4.4.2"
}
}