-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "idn-area",
"version": "5.1.0",
"description": "API that provides information about Indonesia administrative area.",
"author": "fityannugroho <[email protected]> (https://github.com/fityannugroho)",
"funding": "https://github.com/sponsors/fityannugroho",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fityannugroho/idn-area"
},
"keywords": ["idn-area", "indonesia", "wilayah", "area", "data", "api"],
"scripts": {
"build": "nest build",
"prisma:gen": "tsx prisma/generate.ts",
"db:migrate": "tsx prisma/migrate.ts",
"db:seed": "prisma db seed",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage",
"test:e2e": "vitest run --config ./vitest.config.e2e.mts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@fastify/static": "^7.0.4",
"@nestjs/common": "^10.4.8",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.8",
"@nestjs/platform-fastify": "^10.4.8",
"@nestjs/swagger": "^8.0.7",
"@nestjs/throttler": "^6.2.1",
"@prisma/client": "^5.22.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@nestjs/cli": "^10.4.7",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.8",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.2",
"@types/express": "^4.17.21",
"@types/node": "^22.9.1",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.1.5",
"idn-area-data": "^3.1.1",
"prisma": "^5.22.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"unplugin-swc": "^1.5.1",
"vitest": "^2.1.5"
},
"engines": {
"node": ">=18.0.0"
}
}