-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.89 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
{
"name": "auth_service2",
"version": "1.0.0",
"description": "the usermangement services",
"homepage": "https://github.com/NaVIn69/Auth_Services#readme",
"bugs": {
"url": "https://github.com/NaVIn69/Auth_Services/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NaVIn69/Auth_Services.git"
},
"license": "ISC",
"author": "navin",
"type": "commonjs",
"main": "dist/server.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon --legacy-watch src/server.ts",
"format:fix": "prettier . --write",
"format:check": "prettier . --check",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --watch --runInBand",
"prepare": "husky",
"typeorm": "typeorm-ts-node-commonjs"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.6",
"@types/http-errors": "^2.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"@types/winston": "^2.4.4",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "3.7.4",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
},
"lint-staged": {
"*.ts": [
"npm run format:fix",
"npm run lint:fix"
]
},
"dependencies": {
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"http-errors": "^2.0.1",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.28",
"winston": "^3.19.0"
}
}