-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1.25 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
{
"name": "root",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TanStack/config.git"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"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:eslint,test:types,test:build,test:sherif",
"test:ci": "nx run-many --targets=test:eslint,test:types,test:build,test:sherif",
"test:build": "nx affected --target=test:build",
"test:types": "nx affected --target=test:types",
"test:eslint": "nx affected --target=test:eslint",
"test:sherif": "sherif",
"test:format": "pnpm run prettier --check",
"prettier": "prettier --ignore-unknown .",
"prettier:write": "pnpm run prettier --write",
"cipublish": "node ./packages/config/bin/config.js publish --cwd .",
"cipublishforce": "CI=true pnpm cipublish"
},
"devDependencies": {
"@types/node": "^20.16.2",
"jsdom": "^25.0.1",
"nx": "^20.0.12",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"sherif": "^1.0.1",
"typescript": "^5.5.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}