-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "RestAPI_Template",
"version": "1.0.0",
"description": "Basic Template for RESTful API in Node.js",
"main": "server.js",
"scripts": {
"tsc": "tsc",
"debug": "nodemon --inspect ./server.ts",
"lint": "npx eslint --ext=.ts .",
"document": "npx typedoc",
"build": "npx tsc",
"start": "nodemon ./dist/server.js",
"start-dev": "npm run build && npm run lint && npx cross-env NODE_ENV=development npm run start",
"start-demo": "npm run build && npx cross-env NODE_ENV=development npm run start",
"start-secure": "npm run build && npm run lint && npx cross-env NODE_ENV=secure npm run start"
},
"keywords": [
"hooks",
"API Template",
"RESTful"
],
"author": "Arvind.K",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"nodemon": "^1.19.0",
"@types/compression": "^1.0.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"get-port": "^5.0.0",
"memory-cache": "^0.2.0",
"moment-timezone": "^0.5.25",
"mongoose": "^5.5.8",
"nodemailer": "^6.1.1",
"nodemon": "^1.19.0"
}
}