-
-
Notifications
You must be signed in to change notification settings - Fork 304
/
package.json
56 lines (56 loc) · 2.04 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TanStack/virtual.git"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); 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",
"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",
"cipublish": "node scripts/publish.js",
"cipublishforce": "CI=true pnpm cipublish"
},
"nx": {
"includedScripts": [
"test:knip",
"test:sherif"
]
},
"devDependencies": {
"@tanstack/config": "^0.14.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^18.19.3",
"eslint": "^9.15.0",
"jsdom": "^25.0.1",
"knip": "^5.37.1",
"nx": "^20.1.2",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"publint": "^0.2.12",
"rimraf": "^5.0.10",
"sherif": "^0.11.0",
"typescript": "5.2.2",
"vite": "^5.4.11",
"vitest": "^2.1.5"
}
}