-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "job-service",
"version": "1.0.0",
"main": "index.js",
"author": "Vinh",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --exit-child src/app.ts",
"build": "rm -rf build && node scripts/build.mjs",
"lint": "eslint src/** --ext .ts",
"precommit": "lint-staged",
"migration:run": "typeorm-ts-node-commonjs migration:run -d ./src/utils/data-source.ts",
"migration:generate": "typeorm-ts-node-commonjs migration:generate ./src/migrations/JobTable -d ./src/utils/data-source.ts",
"migration": "npm run migration:generate && npm run migration:run"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"config": "^3.3.9",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"envalid": "^7.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.0",
"redis": "^4.6.7",
"reflect-metadata": "^0.1.13",
"sharp": "^0.32.1",
"typeorm": "0.3.16",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"esbuild": "^0.18.6",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"morgan": "^1.10.0",
"prettier": "^2.8.8",
"ts-node": "10.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.ts": "yarn lint"
}
}