-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "ts-kickstart",
"description": "",
"version": "0.0.0",
"author": "moontai0724",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=22"
},
"main": "src/index.js",
"imports": {
"#*": "./src/*"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.*": "prettier --write --ignore-unknown"
},
"scripts": {
"dev": "tsx watch --env-file=.env",
"local": "npm run dev src/index.ts",
"build": "rm -rf build && tsc --project src/tsconfig.build.json",
"test": "vitest",
"prepare": "husky || true"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@tsconfig/node22": "^22.0.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.15.19",
"@typescript-eslint/parser": "^8.32.1",
"@typescript-eslint/utils": "^8.32.1",
"@vitest/coverage-v8": "^3.1.3",
"drizzle-kit": "^0.31.4",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.3.5",
"eslint-plugin-import-x": "^4.12.2",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-perfectionist": "^4.13.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.1.3"
},
"dependencies": {
"@apollo/server": "^5.0.0",
"drizzle-graphql": "^0.8.5",
"drizzle-orm": "^0.44.3",
"graphql": "^16.11.0",
"mysql2": "^3.14.2"
}
}