-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "codeui-monorepo",
"private": true,
"description": "Monorepo for CodeUI library",
"version": "0.0.1",
"license": "MIT",
"author": "riccardoperra",
"contributors": [],
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"build:kit": "turbo run build --filter=@codeui/kit",
"test": "turbo run test --filter=!./playgrounds/*",
"typecheck": "turbo run typecheck --filter=!./playgrounds/*",
"build-test": "turbo run build test typecheck --filter=!./playgrounds/*",
"format": "prettier -w \"packages/**/*.{js,ts,json,css,tsx,jsx,md}\" \"playgrounds/**/*.{js,ts,json,css,tsx,jsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version && pnpm i",
"ci:version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm run build:kit && changeset publish",
"update-deps": "taze -w -r && pnpm i",
"publish": "changeset publish",
"prepublish": "pnpm build"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@changesets/cli": "^2.27.8",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"babel-preset-solid": "^1.8.22",
"prettier": "3.3.3",
"rollup": "^4.21.3",
"rollup-preset-solid": "^2.0.1",
"solid-js": "^1.8.22",
"taze": "^0.16.8",
"ts-jest": "^29.2.5",
"turbo": "^2.1.1",
"typescript": "^5.6.2",
"vite": "^5.4.4",
"vite-plugin-solid": "^2.10.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/changelog-git": "^0.2.0"
}
}