-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.1 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
67
68
69
70
71
72
73
{
"name": "timesheets-backend",
"version": "1.0.0",
"license": "UNLICENSED",
"main": "dist/server.js",
"type": "commonjs",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/server.ts",
"build": "npm run build:docs && tsc && tsc-alias",
"build:docs": "ts-node -r tsconfig-paths/register src/docs/generateDoc.ts",
"start": "node dist/server.js",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"test": "jest --runInBand --detectOpenHandles",
"test:unit": "jest --runInBand --detectOpenHandles --testPathPatterns=__tests__/unit",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@faker-js/faker": "^10.1.0",
"@types/cookie-parser": "^1.4.10",
"bcryptjs": "^3.0.2",
"cookie": "^1.1.1",
"cookie-parser": "^1.4.7",
"cookie-signature": "^1.2.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.19.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^8.5.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"swagger-ui-express": "^5.0.1",
"tsconfig-paths": "^4.2.0",
"zeptomail": "^6.2.1",
"zod": "^3.23.8",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"tspec": "^0.1.116",
"@eslint/js": "^9.37.0",
"@types/cookie": "^0.6.0",
"@types/cookie-signature": "^1.1.2",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/helmet": "^0.0.48",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/pino-http": "^5.8.4",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^9.37.0",
"husky": "^8.0.0",
"jest": "^30.2.0",
"mongodb-memory-server": "^10.2.3",
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"ts-jest": "^29.4.5",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}