-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
{
"name": "express-ts-handlebars",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/bin/www",
"dev": "nodemon src/app.ts",
"lint": "npx eslint src/**/*.{js,ts}",
"test": "jest --watchAll --runInBand --verbose --coverage",
"typeorm": "typeorm-ts-node-commonjs",
"migration:generate": "npm run typeorm migration:generate -- -d src/config/data-source.ts src/migrations/InitialMigration",
"migration:run": "npm run typeorm migration:run -- -d src/config/data-source.ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"express": "~4.16.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"fuse.js": "^7.0.0",
"handlebars-helpers": "^0.10.0",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"isomorphic-dompurify": "^2.14.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"mysql2": "^3.11.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@eslint/js": "^8.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/connect-flash": "^0.0.40",
"@types/cookie-parser": "^1.4.7",
"@types/debug": "^4.1.12",
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/handlebars-helpers": "^0.5.6",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^22.1.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"class-validator": "^0.14.1",
"dompurify": "^3.1.6",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.0.0",
"globals": "^15.9.0",
"i18next": "^23.12.3",
"i18next-fs-backend": "^2.3.2",
"i18next-http-middleware": "^3.6.0",
"nodemon": "^3.1.4",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}