-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "bookmarker",
"private": true,
"scripts": {
"tdd": "vitest watch",
"test": "vitest run",
"build": "turbo build",
"dev": "turbo dev --parallel",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@bookmarker/config": "workspace:*",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jsdom": "^21.1.6",
"checkly": "^4.6.1",
"jest-diff": "^29.7.0",
"jsdom": "^24.0.0",
"mailhog": "^4.16.0",
"prettier": "^3.1.1",
"turbo": "latest",
"typescript": "^5.3.3",
"vitest": "^1.3.1",
"vitest-fetch-mock": "^0.2.2",
"vitest-mock-extended": "^1.3.1"
},
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=18.x",
"pnpm": ">=8.x"
},
"prisma": {
"schema": "packages/db/prisma/schema.prisma",
"seed": "ts-node --transpile-only ./packages/db/seed.ts"
},
"resolutions": {
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18"
}
}