-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@url4irl/domain-verification",
"version": "1.1.1",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "A TypeScript client library for the Domain Verification Service API, with built-in validation and type safety",
"main": "dist/lib/client/index.js",
"types": "dist/lib/client/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/client/index.d.ts",
"import": "./dist/lib/client/index.js",
"require": "./dist/lib/client/index.js"
}
},
"files": [
"dist/lib/client",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"prepublishOnly": "pnpm run build",
"start": "node dist/lib/api.js",
"dev": "concurrently -n backend,db,db-studio -c blue.bold,cyan.bold,green.bold \"wait-on tcp:5432 && ts-node-dev --respawn --transpile-only lib/api.ts\" \"docker compose -f ./dev/docker-compose.yml up\" \"wait-on tcp:5432 && drizzle-kit studio\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "concurrently -n db,migration -c blue.bold,cyan.bold \"wait-on tcp:5432 && drizzle-kit migrate\" \"docker compose -f ./dev/docker-compose.yml up\"",
"db:cleanup": "./dev/clean-db.sh",
"test": "pnpm run test:setup && DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres_test jest && pnpm run test:teardown",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:setup": "./scripts/setup-test.sh",
"test:teardown": "docker compose -f ./dev/docker-compose.yml down",
"db:setup-test": "DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres_test drizzle-kit migrate",
"docker:test": "./scripts/test-docker-service.sh",
"release": "semantic-release"
},
"keywords": [
"domain",
"verification",
"client",
"api",
"typescript",
"nodejs",
"zod",
"dns",
"txt-record",
"domain-validation"
],
"author": "Marcelo Cardoso",
"license": "ISC",
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@types/body-parser": "^1.19.6",
"@types/express": "^4.17.23",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"@types/node-fetch": "^2.6.4",
"@types/pg": "^8.15.4",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.0",
"jest": "^30.0.4",
"semantic-release": "^24.2.7",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"wait-on": "^8.0.3"
},
"dependencies": {
"body-parser": "^2.2.0",
"dotenv": "^17.2.0",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
"express": "^4.21.2",
"node-fetch": "^2.6.1",
"pg": "^8.16.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.23.8"
}
}