-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "server",
"version": "1.1.1",
"description": "",
"main": "index.ts",
"type": "commonjs",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/supertest": "^2.0.12",
"@vitejs/plugin-react": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-http-proxy": "^1.6.3",
"http-proxy-middleware": "^2.0.6",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.1.0",
"mongoose": "^7.0.5",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"supertest": "^6.3.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@types/socket.io-client": "^3.0.0",
"@types/uuid": "^9.0.1",
"@vitest/coverage-c8": "^0.29.8",
"@vitest/coverage-istanbul": "^0.29.8",
"@vitest/ui": "^0.29.8",
"concurrently": "^8.0.0",
"jsdom": "^22.0.0",
"nodemon": "^3.0.0",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vite-plugin-node": "^3.0.2",
"vitest": "^0.29.8"
}
}