-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 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
{
"name": "catmint-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"test:typecheck": "vitest typecheck",
"test:e2e": "playwright test",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.0.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/browser": "^3.0.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0",
"vitest-browser-react": "^1.0.1"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
}
}