-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 889 Bytes
/
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
{
"name": "shorea-express-mongoose-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm install && tsc",
"start": "node ./dist/index.js",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/csurf": "^1.11.5",
"axios": "^1.7.2",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"moment-timezone": "^0.5.40",
"mongoose": "^8.5.1",
"node-cron": "^3.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.7",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}