-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
66
{
"name": "database-services",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate": "sequelize-cli db:migrate --config src/config/sequelize.config.js",
"seed": "sequelize-cli db:seed:all",
"prepare": "husky install",
"lint": "eslint src",
"test": "jest"
},
"dependencies": {
"@tsconfig/node16": "^16.1.3",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "8.5.1",
"nanoid": "3",
"pg": "^8.13.3",
"pg-format": "^1.0.4",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.2",
"@types/sequelize": "^4.28.20",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.5.0",
"sequelize-cli": "^6.6.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js,json}": [
"eslint --fix",
"yarn prettier --write",
"git add ."
]
}
}