-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"name": "aniwarden",
"version": "0.0.0",
"license": "GPL-3.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"dev": "nodemon --exec 'node --env-file .env.development' --quiet ./src/index.ts",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "pnpm run lint:eslint && pnpm run lint:typescript",
"lint:eslint": "eslint --max-warnings=0",
"lint:prettier": "prettier --ignore-path .gitignore --check .",
"lint:typescript": "tsc --noEmit",
"prepare": "husky",
"start": "node src/index.ts"
},
"dependencies": {
"anitomy-js": "^5.4.0",
"better-sqlite3": "^11.10.0",
"drizzle-orm": "^0.43.1",
"fast-xml-parser": "^5.2.3",
"fuse.js": "^7.1.0",
"graphql": "^16.11.0",
"graphql-request": "^7.1.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-roll": "^3.1.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@kutsan/eslint-config": "^1.2.0",
"@kutsan/prettier-config": "^1.1.0",
"@kutsan/typescript-config": "^1.1.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.18",
"drizzle-kit": "^0.31.1",
"eslint": "^9.26.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.14",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}