-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 914 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 914 Bytes
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
{
"name": "authkit",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@8.15.8",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"prepare": "husky install"
},
"devDependencies": {
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"supertest": "^7.1.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"turbo": "^2.3.3",
"vite": "^5.4.21",
"vitest": "^2.1.8"
}
}