-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "pie-shop-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^1.12.2",
"express": "^4.18.2",
"helmet": "^8.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.2",
"swagger-ui-express": "^5.0.1",
"web-vitals": "^2.1.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.14.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.6.0",
"jsdom": "^24.0.0",
"nodemon": "^3.0.2",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vitest": "^1.6.0"
},
"scripts": {
"dev": "vite",
"start": "node server/server.js",
"start:dev": "nodemon server/server.js",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run",
"lint": "tsc --noEmit"
}
}