-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "express-prod-boilerplate",
"version": "1.0.0",
"description": "Node express API production ready boilerplate",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node dist/app.js",
"prod": "NODE_ENV=production node dist/api.bundle.js",
"dev": "NODE_ENV=development nodemon src/app.ts",
"build:dev": "rimraf dist && tsc -p .",
"build:prod": "rimraf dist && webpack",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Vishwas Anand Bhushan",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.4.1",
"mongoose": "^5.12.3",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/method-override": "0.0.31",
"@types/morgan": "^1.7.35",
"@types/node": "^12.6.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0"
}
}