-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 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
{
"name": "blog-app-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "npx ts-node-dev --respawn --transpile-only src/main.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier . --write",
"prepare": "husky",
"lint-staged": "lint-staged",
"migrate": "ts-node src/scripts/migration.ts",
"test": "NODE_ENV=test jest --maxWorkers=1 --forceExit --detectOpenHandles"
},
"lint-staged": {
"**/*": [
"npm run lint",
"npm run format"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"aws-sdk": "^2.1692.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"redis": "^4.7.0",
"uuid": "^9.0.0",
"winston": "^3.17.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.7",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}