-
-
Notifications
You must be signed in to change notification settings - Fork 343
/
package.json
74 lines (74 loc) · 2.75 KB
/
package.json
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tanstack/form.git"
},
"packageManager": "pnpm@9.12.3",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...')} else {process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm run test:ci",
"test:pr": "nx affected --targets=test:sherif,test:knip,test:eslint,test:lib,test:types,test:build,build",
"test:ci": "nx run-many --targets=test:sherif,test:knip,test:eslint,test:lib,test:types,test:build,build",
"test:eslint": "nx affected --target=test:eslint",
"test:format": "pnpm run prettier --check",
"test:sherif": "sherif -i react -i react-dom",
"test:lib": "nx affected --target=test:lib --exclude=examples/**",
"test:lib:dev": "pnpm run test:lib && nx watch --all -- pnpm run test:lib",
"test:build": "nx affected --target=test:build --exclude=examples/**",
"test:types": "nx affected --target=test:types --exclude=examples/**",
"test:knip": "knip",
"build": "nx affected --target=build --exclude=examples/**",
"build:all": "nx run-many --target=build --exclude=examples/**",
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all",
"dev": "pnpm run watch",
"prettier": "prettier --ignore-unknown .",
"prettier:write": "pnpm run prettier --write",
"docs:generate": "node scripts/generateDocs.js",
"cipublish": "node scripts/publish.js",
"cipublishforce": "CI=true pnpm cipublish"
},
"nx": {
"includedScripts": [
"test:knip",
"test:sherif"
]
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.16.1",
"@solidjs/testing-library": "^0.8.10",
"@tanstack/config": "^0.14.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.1.0",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^9.14.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-fb9a90fa48-20240614",
"jsdom": "^25.0.1",
"knip": "^5.36.5",
"nx": "^19.8.10",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.10",
"sherif": "^1.0.1",
"solid-js": "^1.9.3",
"typescript": "5.4.5",
"typescript49": "npm:typescript@4.9",
"typescript50": "npm:typescript@5.0",
"typescript51": "npm:typescript@5.1",
"typescript52": "npm:typescript@5.2",
"typescript53": "npm:typescript@5.3",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"vue": "^3.3.4"
}
}