-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"private": true,
"repository": "https://github.com/tanstack/bling.git",
"scripts": {
"build": "ts-node scripts/build.ts",
"dev": "pnpm -rc --filter \"./packages/**\" --parallel exec 'pnpm dev'",
"test": "exit 0",
"test:dev": "exit 0",
"test:ci": "exit 0",
"clean-all": "pnpm -rc --parallel exec 'rm -rf build dist node_modules'",
"prettier": "prettier \"packages/*/{src/**,examples/**/src/**}.{md,js,jsx,ts,tsx,json}\" --write",
"pub": "pnpm build && pnpm publish -r --no-git-checks",
"cipublish": "ts-node scripts/publish.ts",
"cipublishforce": "CI=true pnpm cipublish"
},
"pnpm": {
"overrides": {
"@tanstack/bling": "workspace:*"
}
},
"devDependencies": {
"@commitlint/parse": "^17.4.4",
"@types/node": "^18.14.0",
"axios": "^1.3.4",
"current-git-branch": "^1.1.0",
"git-log-parser": "^1.2.0",
"jsonfile": "^6.1.0",
"luxon": "^3.2.1",
"stream-to-array": "^2.3.0",
"ts-node": "^10.9.1",
"type-fest": "^3.6.0",
"vite": "^4.1.4"
}
}