-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "crud-demo",
"version": "1.0.41",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"prod": "NODE_ENV='production' nodemon src/server.ts",
"build": "tsc -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.21.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^2.1.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.6.0",
"express-useragent": "^1.0.15",
"fs-extra": "^10.1.0",
"get-routes": "^2.1.6",
"helmet": "^6.0.0",
"i18n": "^0.15.1",
"jsend": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.7.2",
"mongoose-lean-getters": "^0.3.5",
"mongoose-lean-id": "^0.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"mustache": "^4.2.0",
"querystring": "^0.2.1",
"uuid": "^9.0.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cache-manager": "^4.0.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.14",
"@types/express-ejs-layouts": "^2.5.0",
"@types/express-useragent": "^1.0.2",
"@types/jsend": "^1.0.29",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.188",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/mustache": "^4.2.1",
"@types/node": "^18.11.9",
"@types/nodemailer": "^6.4.6",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}