-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"typescript": "^4.9.5",
"validator": "^13.7.0",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.10",
"@types/ws": "^8.5.4",
"cross-env": "^7.0.3",
"jest": "^29.3.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"scripts": {
"start": "ts-node --files -r dotenv/config src/server.ts",
"dev": "cross-env NODE_ENV=development ts-node-dev -r dotenv/config --files src/server.ts",
"build": "tsc",
"debug": "ts-node --files --inspect -r dotenv/config src/server.ts",
"test": "jest --runInBand"
}
}