-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "node_bp",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/app.ts | ./node_modules/.bin/bunyan",
"start": "NODE_ENV=production node ./build/src/app.js | ./node_modules/.bin/bunyan",
"lint:check": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"prettier:check": "prettier --check 'src/**/*.{ts,json}'",
"prettier:fix": "prettier --write 'src/**/*.{ts,json}'",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"seed:admin:dev": "ts-node -r tsconfig-paths/register src/seeds/seedAdmin.ts",
"seed:admin:prod": "node build/src/seeds/seedAdmin.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.15",
"compression": "^1.7.4",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.4",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"redis": "^4.7.0",
"swagger-stats": "^0.99.7",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcryptjs": "^2.4.6",
"@types/bunyan": "^1.8.11",
"@types/compression": "^1.7.5",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.5.0",
"@types/nodemailer": "^6.4.15",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/swagger-stats": "^0.95.11",
"eslint": "9.9.1",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript-eslint": "^8.2.0"
}
}