-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) 路 964 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) 路 964 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
37
38
39
40
41
42
43
{
"name": "autoform",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency 20",
"lint": "turbo lint",
"check:packages": "node scripts/check-package-boundaries.mjs",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"cypress": "turbo run cypress --filter=web",
"cypress:open": "turbo run cypress:open --filter=web"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsdown": "^0.22.3",
"turbo": "^2.1.3",
"typescript": "^5.8.3",
"unrun": "^0.3.1"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@11.9.0",
"dependencies": {
"@changesets/cli": "^2.27.9"
}
}