-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.62 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
{
"name": "chat",
"version": "0.1.0",
"type": "module",
"scripts": {
"vite": "vite",
"dev:web": "vite --host --config ./vite.config.web.ts",
"dev:api": "esbuild ./api/main.ts --outfile=./out/api/main.cjs --platform=node --bundle --watch=forever & nodemon ./out/api/main.cjs",
"dev": "concurrently -k npm:dev:web npm:dev:api",
"test:web": "vitest run --config ./vite.config.web.ts",
"test:api": "vitest run --config ./vite.config.api.ts",
"test": "concurrently npm:test:web npm:test:api"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.0.2",
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/express": "^5.0.0",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"jsdom": "^25.0.1",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
},
"volta": {
"node": "22.9.0",
"npm": "10.3.0"
}
}