-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"name": "w3ctagbot",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"codegen": "graphql-codegen --config gql-codegen.config.ts && prisma generate",
"test": "astro check && eslint . && tsc && DATABASE_URL=file:./test.db prisma db push && DATABASE_URL=file:./test.db vitest"
},
"dependencies": {
"@astrojs/node": "^9.0.0",
"@github/relative-time-element": "^4.4.4",
"@graphql-typed-document-node/core": "^3.2.0",
"@js-temporal/polyfill": "^0.4.4",
"@observablehq/plot": "^0.6.16",
"@octokit/auth-oauth-app": "^8.1.1",
"@octokit/graphql": "^8.1.1",
"@octokit/webhooks": "^13.4.1",
"@prisma/client": "^6.0.1",
"astro": "^5.0.5",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-string": "^4.0.0",
"micromark": "^4.0.1",
"micromark-extension-gfm": "^3.0.0",
"octokit": "^4.0.2",
"prisma": "^6.0.1",
"unist-util-visit": "^5.0.0",
"vite": "^6.0.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@eslint/js": "^9.17.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.1",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-document-nodes": "^4.0.12",
"@octokit/graphql-schema": "^15.25.0",
"@types/eslint__js": "^8.42.3",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.2",
"@types/unist": "^3.0.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"pnpm": {
"#": "Revert once vitest 3 is released: https://github.com/withastro/astro/issues/12662",
"overrides": {
"@vitest/mocker>vite": "6",
"vite-node>vite": "6",
"vitest>vite": "6"
}
},
"engines": {
"node": "22"
},
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}