-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 980 Bytes
/
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
{
"name": "keystone-t3",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/next",
"**/next/**",
"**/react",
"**/react/**",
"**/react-dom",
"**/react-dom/**",
"**/@keystone-6/core",
"**/@keystone-6/core/**"
]
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"ui:new": "plop --plopfile ./templates/plopfile.js ui-component",
"storybook:dev": "pnpm -r --filter ui run storybook"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"plop": "^3.1.2",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@7.21.0",
"dependencies": {
"app": "workspace:*",
"cms": "workspace:*",
"ui": "workspace:*"
}
}