-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"private": true,
"name": "root",
"engines": {
"pnpm": ">=6"
},
"scripts": {
"build": "turbo run build",
"start": "turbo run start --filter=!website",
"prepare": "husky install",
"prettier-check": "turbo run prettier-check",
"prettier-write": "turbo run prettier-write",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"playroom-start": "turbo run playroom-start",
"playroom-build": "turbo run playroom-build",
"lint-staged": "turbo run lint-staged --concurrency=1",
"eslint-check": "turbo run eslint-check",
"chromatic": "turbo run chromatic",
"website-start": "turbo run website-start",
"website-build": "turbo run website-build",
"check-circular-deps": "turbo run check-circular-deps",
"configurator-build": "turbo run build --filter=configuration-builder"
},
"devDependencies": {
"husky": "8.0.3",
"turbo": "1.10.13"
},
"packageManager": "pnpm@7.33.7",
"pnpm": {
"overrides": {
"@types/react": "18.3.18"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18",
"@types/react": "18"
}
}
}
}