-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 3.35 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
88
89
90
91
92
93
94
95
{
"name": "university-bn",
"version": "1.1.0 - alpha",
"description": "A backend for University management system built with Express and TypeScript.",
"type": "commonjs",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"install:prod": "npm install --omit=optional",
"build": "rimraf dist/ && tsc && tsc-alias",
"start:prod": "node ./dist/index.js",
"test": "jest",
"start": "ts-node src/index.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:apply": "npm run typeorm -- -d src/configs/database.ts migration:run",
"migration:revert": "npm run typeorm -- -d src/configs/database.ts migration:revert",
"migration:generate": "ts-node ./src/utils/Db/generateMigrations.ts",
"seed": "ts-node -r tsconfig-paths/register src/utils/Db/generateSeed.ts",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{js,json,ts}\"",
"type-check": "tsc --noEmit",
"prepare": "node husky-prepare.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"bcrypt": "^5.0.2",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cls-hooked": "^4.2.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"exceljs": "^4.4.0",
"express": "^4.18.3",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mysql2": "^3.9.2",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"safe-json-stringify": "^1.2.0",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typeorm": "0.3.20",
"typeorm-extension": "^3.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cls-hooked": "^4.3.8",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/exceljs": "^1.3.0",
"@types/express": "^4.17.21",
"@types/faker": "^6.6.9",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.0",
"@types/node": "^16.11.10",
"@types/safe-json-stringify": "^1.1.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.3",
"ts-node": "10.9.1",
"typescript": "^4.5.2"
}
}