-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.11 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"clean": "turbo run clean",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test-packages": "turbo run clean --filter='./packages/*' && turbo run build --filter='./packages/*' && turbo run test --filter='./packages/*' && turbo run lint --filter='./packages/*'",
"publish-packages": "pnpm tag-packages && pnpm --filter './packages/**' publish --access=public",
"tag-packages": "node scripts/tag"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"classnames": "^2.3.2",
"eslint": "^7.32.0",
"eslint-config-shared": "workspace:*",
"eslint-plugin-solid": "^0.9.4",
"eslint-plugin-vue": "^9.9.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"rollup": "^3.14.0",
"tslib": "^2.5.0",
"turbo": "latest",
"typescript": "^4.9.4",
"vitest": "^0.27.0"
},
"packageManager": "[email protected]"
}