forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "query",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/TanStack/query.git"
},
"packageManager": "pnpm@8.12.1",
"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",
"install:csb": "corepack enable && pnpm install --frozen-lockfile",
"test": "pnpm run test:ci",
"test:ci": "nx run-many --exclude=examples/** --targets=test:format,test:sherif,test:eslint,test:lib,test:types,test:build,test:bundle,build",
"test:eslint": "nx affected --target=test:eslint",
"test:format": "pnpm run prettier --check",
"test:sherif": "sherif -i react-scripts -i typescript --ignore-package react-vite5 --ignore-package react-vite4",
"test:lib": "nx affected --target=test:lib",
"test:lib:dev": "pnpm --filter \"./packages/**\" run test:lib:dev",
"test:build": "nx affected --target=test:build",
"test:types": "nx affected --target=test:types",
"test:bundle": "nx affected --target=test:bundle",
"build": "nx affected --target=build",
"build:all": "nx run-many --exclude=examples/** --target=build",
"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"
},
"nx": {
"includedScripts": [
"test:format",
"test:sherif"
]
},
"namespace": "@tanstack",
"devDependencies": {
"@commitlint/parse": "^18.4.3",
"@solidjs/testing-library": "^0.8.5",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/current-git-branch": "^1.1.6",
"@types/eslint": "^8.56.0",
"@types/git-log-parser": "^1.2.3",
"@types/jsonfile": "^6.1.4",
"@types/luxon": "^3.3.7",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/semver": "^7.5.6",
"@types/stream-to-array": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-istanbul": "^1.1.0",
"axios": "^1.6.2",
"chalk": "^5.3.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"current-git-branch": "^1.1.0",
"esbuild-plugin-file-path-extensions": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"git-log-parser": "^1.2.0",
"jsdom": "^23.0.1",
"jsonfile": "^6.1.0",
"knip": "^3.3.1",
"luxon": "^3.4.4",
"nx": "^17.2.7",
"prettier": "^4.0.0-alpha.8",
"prettier-plugin-svelte": "^3.1.2",
"publint": "^0.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"sherif": "^0.7.0",
"solid-js": "^1.8.7",
"stream-to-array": "^2.3.0",
"tsup": "^8.0.1",
"type-fest": "^4.8.3",
"typescript": "5.2.2",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"pnpm": {
"overrides": {
"@typescript-eslint/eslint-plugin": "$@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser": "$@typescript-eslint/parser",
"eslint": "$eslint"
}
}
}