-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "payroll-case-study",
"version": "1.0.0",
"scripts": {
"lint": "eslint . --ext .ts",
"ts": "tsc -b",
"test": "jest --runInBand",
"main": "TZ=UTC npx ts-node --esm ./src/main/main.ts",
"checkall": "pnpm lint && pnpm ts && pnpm test",
"migrate": "npx ts-node --esm ./scripts/db-migrate.ts",
"clearDb": "npx ts-node --esm ./scripts/db-clear.ts",
"generate-dep-graph": "npx depcruise src --include-only ^src --collapse 2 -T dot | dot -T svg > collapsed.svg"
},
"author": "Steve Mu",
"type": "module",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"dependency-cruiser": "^16.2.4",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"prisma": "5.11.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "5.11.0"
}
}