-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
52
{
"name": "backend",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "nodemon src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"test": "jest --watch",
"prettier": "prettier . --write",
"check-types": "tsc --noEmit",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.15",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/nodemailer": "^6.4.14",
"bcrypt": "^5.1.1",
"celebrate": "^15.0.3",
"cors": "^2.8.5",
"express-validator": "^7.0.1",
"firebase": "10.5.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.7"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/eslint": "^8.44.7",
"@types/estree": "^1.0.5",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.7",
"@types/node": "^20.9.0",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}