-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.26 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
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
{
"name": "rest-starter",
"version": "1.0.0",
"author": {
"name": "Khanate",
"email": "[email protected]",
"url": "https://khanate.pk"
},
"license": "MIT",
"type": "module",
"scripts": {
"start": "tsx --watch --require dotenv/config src/app.ts",
"build": "rimraf ./build && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start:production": "node --experimental-specifier-resolution=node build/app.js",
"lint": "eslint . --fix --report-unused-disable-directives && pnpm format && pnpm spellcheck",
"format": "prettier --write --log-level silent .",
"spellcheck": "cspell . --quiet",
"test": "vitest watch",
"test-ui": "vitest --ui",
"typecheck": "vitest typecheck",
"env:login": "dotenv-vault login -y",
"env:push": "dotenv-vault push",
"env:pull": "dotenv-vault pull",
"env:open": "dotenv-vault open -y",
"keygen": "ssh-keygen -t rsa -b 4096 -m PEM -f .rsa.key && openssl rsa -in .rsa.key -pubout -outform PEM -out .rsa.key.pub",
"trace": "tsc --generateTrace ./trace && npx @typescript/analyze-trace trace"
},
"dependencies": {
"@prisma/client": "^5.4.1",
"@ts-rest/core": "^3.30.4",
"@ts-rest/express": "^3.30.4",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"pino": "^8.15.6",
"pino-http": "^8.5.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/cors": "^2.8.14",
"@types/eslint": "^8.44.3",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@typescript/analyze-trace": "^0.10.1",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"cspell": "^7.3.7",
"dotenv": "^16.3.1",
"dotenv-vault": "^1.25.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.3.2",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"prisma": "^5.4.1",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}