-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.58 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
{
"name": "neuland.app-backend",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run index.ts",
"dev": "bun --hot run index.ts",
"prepare": "husky",
"docs:dev": "magidoc dev -f docs/magidoc.mjs -m bun",
"drizzle-kit": "drizzle-kit generate --schema ./src/db/schema/ --dialect postgresql --out ./src/db/migrations",
"migrate": "bun run ./src/db/migrate.ts",
"codegen": "graphql-codegen --config codegen.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@apollo/server": "^4.11.2",
"@node-rs/xxhash": "^1.7.6",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"deepl": "^1.0.13",
"drizzle-orm": "^0.36.4",
"fetch-cookie": "^3.0.1",
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.0",
"graphql-tag": "^2.12.6",
"he": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.7",
"moment": "^2.30.1",
"moment-timezone": "^0.5.46",
"node-cache": "^5.1.2",
"pdf-parse": "https://github.com/neuland-ingolstadt/pdf-parse.git",
"postgres": "^3.4.5",
"sanitize-html": "^2.13.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@magidoc/cli": "^6.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "^1.1.14",
"@types/cors": "^2.8.17",
"@types/he": "^1.2.3",
"@types/jsonwebtoken": "^9.0.7",
"@types/jwk-to-pem": "^2.0.3",
"@types/node": "^22.10.2",
"@types/pdf-parse": "^1.1.4",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.28.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs}": [
"bunx eslint --fix"
],
"**/*.{js,jsx,ts,tsx,json,yml,gql,graphql,md,mjs}": [
"bunx prettier --write"
]
}
}