-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1023 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
{
"name": "syllabus",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"workspaces": [
"app",
"api"
],
"scripts": {
"dev": "concurrently -p \"[{name}]\" -n \"api,app,gg\" -c \"bgGreen.black.bold,bgBlue.black.bold,bgRed.bold\" \"yarn dev:api\" \"yarn dev:app\" \"yarn dev:gg\"",
"dev:api": "yarn workspace api dev",
"dev:app": "yarn workspace app start",
"dev:gg": "gql-gen --config codegen.yml --watch",
"storybook": "yarn workspace app storybook"
},
"devDependencies": {
"concurrently": "^4.1.0",
"@graphql-codegen/cli": "^1.0.6",
"@graphql-codegen/fragment-matcher": "^1.0.6",
"@graphql-codegen/introspection": "^1.0.6",
"@graphql-codegen/typescript-operations": "^1.0.6",
"@graphql-codegen/typescript": "^1.0.6",
"@graphql-codegen/typescript-graphql-files-modules": "^1.0.6",
"@graphql-codegen/typescript-react-apollo": "^1.0.6",
"graphql-tag": "^2.10.1"
},
"resolutions": {
"graphql": "^14.2.1"
}
}