-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "error-monitoring",
"author": {
"name": "TokoBapak",
"url": "https://github.com/TokoBapak"
},
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest run",
"test:watch": "vitest watch --coverage",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/pg": "^8.6.6",
"@types/pg-cursor": "^2.7.0",
"@types/sqlstring": "^2.3.0",
"@vitest/coverage-c8": "^0.27.1",
"nuxt": "3.0.0",
"typescript": "^4.9.4",
"vitest": "^0.27.1"
},
"dependencies": {
"@trpc/client": "^10.9.0",
"@trpc/server": "^10.9.0",
"clickcache": "^1.0.6",
"pg": "^8.8.0",
"pg-cursor": "^2.7.4",
"sqlstring": "^2.3.3",
"trpc-nuxt": "^0.5.0",
"zod": "^3.20.2"
}
}