-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 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
35
36
{
"name": "workspace",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"first-time-setup": "npm i -g pnpm@9.0.5 turbo && pnpm i",
"build": "turbo run build",
"test": "turbo run test",
"documentation": "pnpx astro dev --root ./documentation",
"shipit": "turbo run build && pnpm -r publish",
"pr-shipit": "turbo run build && pnpm --filter ...[origin/main] pr-release",
"dev": "turbo run dev --filter ./apps/**",
"bump-deps": "pnpm up --latest --recursive --interactive"
},
"private": true,
"packageManager": "pnpm@9.0.5",
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "~7.7.1",
"@typescript-eslint/parser": "~7.7.1",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.3",
"turbo": "^1.13.3",
"typescript": "~5.4.5",
"typescript-plugin-styled-components": "^3.0.0"
},
"engines": {
"node": "20"
}
}