-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "mongoose-express-ts-session-auth",
"version": "1.0.0",
"description": "Mongoose Node.js Express TypeScript boiler for session auth",
"author": "Black Axe",
"scripts": {
"tsc": "tsc",
"watch-tsc": "tsc -w",
"deploy": "node dist/src/server.js",
"watch-deploy": "nodemon dist/src/server.js",
"server": "concurrently \"npm run watch-tsc\" \"npm run watch-deploy\"",
"start": "npm run deploy",
"rimraf": "./node_modules/rimraf/bin.js",
"clean": "rimraf dist/",
"compile": "npm run clean && tsc",
"production": "cross-env NODE_ENV=production npm run start",
"dev": "cross-env NODE_ENV=development npm run start"
},
"dependencies": {
"@dicebear/avatars": "^4.10.1",
"@dicebear/avatars-bottts-sprites": "^4.10.1",
"@types/connect-ensure-login": "^0.1.7",
"bcryptjs": "^2.4.3",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.2",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0",
"request": "^2.88.0",
"rimraf": "^3.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "0.0.40",
"@types/connect-flash": "^0.0.37",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^17.0.0",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/uuid": "^8.3.3",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
}
}