-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.46 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
{
"name": "keystone-mono",
"private": true,
"workspaces": [
"keystone",
"frontend"
],
"scripts": {
"dev:keystone": "yarn workspace keystone keystone-next dev",
"migrate:keystone": "yarn workspace keystone prisma migrate deploy",
"start:keystone": "yarn workspace keystone keystone-next start",
"build:keystone": "yarn workspace keystone keystone-next build",
"build:frontend": "yarn workspace frontend next build",
"dev:frontend": "yarn workspace frontend next dev",
"start:frontend": "yarn workspace frontend next start",
"generate:frontend": "yarn graphql-codegen --config codegen.yml",
"dev": "concurrently -i -n \"NEXTJS,KEYSTONE\" \"yarn dev:frontend\" \"yarn dev:keystone\"",
"build": "concurrently -n \"NEXTJS,KEYSTONE\" \"yarn build:frontend\" \"yarn build:keystone\"",
"start": "concurrently -n \"NEXTJS,KEYSTONE\" \"yarn start:frontend\" \"yarn start:keystone\"",
"postinstall": "yarn workspace keystone postinstall"
},
"dependencies": {
"concurrently": "^6.3.0"
},
"resolutions": {
"graphql": "^15.6.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.2",
"@graphql-codegen/typescript": "^2.3.0",
"@graphql-codegen/typescript-graphql-request": "^4.2.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.0"
}
}