-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "openpm",
"version": "0.1.0",
"private": true,
"engines": {
"node": "= 18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-write": "prettier --write app/ components/ lib/ server/ --ignore-path shiki",
"test": "TZ=UTC vitest",
"check:types": "tsc --noEmit",
"update-kysely-types": "env-cmd -f .env.local kysely-codegen --out-file ./server/db/types.ts --exclude-pattern spatial_ref_sys",
"script:validate-documents": "tsx -r dotenv/config scripts/validate-documents.ts dotenv_config_path=./.env.local"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@neondatabase/serverless": "^0.4.22",
"@readme/openapi-parser": "^2.5.0",
"@teamhanko/hanko-elements": "0.5.5-beta",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "20.3.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"date-fns": "^2.30.0",
"dompurify": "^3.0.3",
"isomorphic-dompurify": "^1.6.0",
"jsonpointer": "^5.0.1",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"kysely": "^0.25.0",
"kysely-neon": "^1.2.0",
"lodash": "^4.17.21",
"marked": "^5.1.0",
"marked-gfm-heading-id": "^3.0.4",
"next": "13.4.7",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.10",
"react-json-view": "^1.21.3",
"semver": "^7.5.3",
"server-only": "^0.0.1",
"shiki": "^0.14.3",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"vite": "^4.3.9",
"vscode-oniguruma": "^1.7.0",
"ws": "^8.13.0",
"yaml": "^2.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/dompurify": "^3.0.2",
"@types/lodash": "^4.14.195",
"@types/marked": "^5.0.0",
"@types/prettier": "^2.7.3",
"@types/semver": "^7.5.0",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"env-cmd": "^10.1.0",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "4.2.1",
"jsdom": "^22.1.0",
"kysely-codegen": "^0.10.1",
"openapi-types": "^12.1.3",
"postcss": "^8.4.24",
"prettier-plugin-tailwindcss": "0.3.0",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.7",
"vitest": "^0.32.2"
}
}