-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 KB
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
{
"name": "NodeBoilerPlate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "NODE_ENV=development nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"start:pm2":"NODE_ENV=production npm run build && pm2 start build/index.js -i 4",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Abhimanyu",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.27",
"@types/nodemailer": "^6.4.0",
"@types/redis": "^2.8.26",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.7",
"@types/i18n": "^0.8.7",
"@types/mongoose": "^5.7.36",
"@types/swagger-ui-express": "^4.1.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"fs": "0.0.1-security",
"i18n": "^0.13.2",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.0",
"nodemailer": "^6.4.11",
"npm": "^6.14.8",
"path": "^0.12.7",
"pm2": "^4.5.0",
"redis": "^3.0.2",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
}
}