-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
53
54
55
56
{
"name": "quick-draw-server",
"version": "1.0.0",
"main": "index.js",
"author": "abdullahwins",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"copy-views": "copyfiles -u 1 \"src/views/**/*.hbs\" dist",
"copy-types": "copyfiles -u 1 \"src/types/**/*.d.ts\" dist",
"build": "tsc -p tsconfig.build.json && npm run copy-views && npm run copy-types",
"start:dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"bcrypt": "^5.1.0",
"class-validator": "^0.14.1",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.30.1",
"mongoose": "^7.3.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"validator": "^13.9.0",
"winston": "^3.13.0",
"xss-clean": "^0.1.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.11",
"@types/node": "^22.8.5",
"@types/nodemailer": "^6.4.15",
"@types/supertest": "^6.0.2",
"@types/validator": "^13.7.17",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}