-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "--use-npm",
"version": "0.0.0",
"scripts": {
"build": "npx tsc ",
"dev": " npx ts-node ./src",
"dev:hot": "nodemon --exec \"npm run dev\" --watch ./src -e ts",
"lint": "npx eslint ./src",
"lint:tests": "npx eslint ./spec",
"start": "NODE_ENV=development node -r ./preload.js ./dist",
"test": "jest",
"test:hot": "nodemon --exec \"npm run test\" --watch ./src --watch ./spec -e ts",
"add:migration": "npm run typeorm -- -d ./src/repos/db.ts migration:generate ./src/migration/$npm_config_name",
"revert:migration": "npm run typeorm migration:revert -- -d ./src/repos/db.ts",
"apply:migration": "npm run typeorm migration:run -- -d ./src/repos/db.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"connect-mysql": "^4.0.0",
"connect-mysql2": "^2.2.6",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"express-async-handler": "1.2.0",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"i18next": "^23.15.2",
"i18next-express-middleware": "^2.0.0",
"i18next-fs-backend": "^2.3.2",
"i18next-http-middleware": "^3.6.0",
"inserturlparams": "^2.0.4",
"jet-logger": "^2.0.1",
"jet-paths": "^1.0.9",
"jsonfile": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.11.3",
"pug": "^3.0.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/express-session": "^1.17.0",
"@types/find": "^0.2.4",
"@types/fs-extra": "^11.0.4",
"@types/i18next": "^13.0.0",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.14",
"@types/jsonfile": "^6.1.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.4",
"@types/supertest": "^6.0.2",
"eslint": "^9.12.0",
"eslint-plugin-n": "^17.10.3",
"express-validator": "^7.2.0",
"faker": "^6.6.6",
"find": "^0.3.0",
"fs-extra": "^11.2.0",
"jasmine": "^5.3.1",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
}
}