-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 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
{
"name": "data-api",
"version": "2.1.1",
"private": true,
"license": "Apache-2.0",
"source": "src/index.ts",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": "https://github.com/cheqd/data-api.git",
"bugs": {
"url": "https://github.com/cheqd/data-api/issues"
},
"homepage": "https://github.com/cheqd/data-api#readme",
"scripts": {
"build": "wrangler deploy --dry-run --outdir=dist",
"deploy": "wrangler deploy",
"dev": "wrangler dev --env staging",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit push",
"db:migrate:ci": "drizzle-kit migrate --force",
"db:seed": "tsx src/database/scripts/seed.ts",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'",
"lint": "eslint . --config .github/linters/eslint.config.mjs",
"lint:fix": "eslint . --fix --config .github/linters/eslint.config.mjs",
"publish": "npx wrangler deploy",
"start": "npx wrangler dev",
"up": "npx drizzle-kit up"
},
"files": [
"dist/**/*",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"drizzle-orm": "^0.43.1",
"itty-router": "^3.0.12",
"pg": "^8.16.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250523.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.12.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.15.21",
"@types/pg": "^8.15.2",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"conventional-changelog-conventionalcommits": "^9.0.0",
"drizzle-kit": "^0.31.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.4",
"typescript": "^5.8.3",
"wrangler": "^4.16.1"
},
"engines": {
"node": ">=22.0.0"
}
}