-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
36 lines (36 loc) · 1.85 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": "@coltorapps/builder-root",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*' --parallel",
"dev": "turbo run dev --filter='./packages/*' --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"test": "turbo test",
"typecheck": "turbo typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"release": "cp README.md packages/builder/README.md && cp README.md packages/builder-react/README.md && pnpm run build --filter='./packages/*' --parallel && cp packages/builder/package.json packages/builder/package.backup.json && cp packages/builder-react/package.json packages/builder-react/package.backup.json && json -I -f packages/builder/package.json -e \"this.devDependencies=undefined\" && json -I -f packages/builder-react/package.json -e \"this.devDependencies=undefined\" && changeset publish && rm packages/builder/README.md && rm packages/builder-react/README.md && mv packages/builder/package.backup.json packages/builder/package.json && mv packages/builder-react/package.backup.json packages/builder-react/package.json"
},
"dependencies": {
"@changesets/cli": "^2.27.10",
"@coltorapps/eslint-config": "0.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@manypkg/cli": "^0.21.0",
"@turbo/gen": "^1.10.16",
"@types/node": "^20.4.9",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"json": "^11.0.0",
"only-allow": "^1.2.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.2",
"turbo": "latest",
"typescript": "^5.2.2"
},
"npmClient": "pnpm",
"packageManager": "[email protected]"
}