-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
33 lines (33 loc) · 1.34 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
{
"name": "flight-spotter",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "Jan Hartmann",
"email": "[email protected]",
"url": "https://janhartmann.dk"
},
"homepage": "https://github.com/janhartmann/flight-spotter",
"scripts": {
"install": "concurrently --prefix-colors magenta,blue -n server,client \"yarn server:install\" \"yarn client:install\"",
"start": "gql-gen && concurrently --prefix-colors magenta,blue -n server,client \"yarn server:start\" \"yarn client:start\"",
"build": "gql-gen && concurrently --prefix-colors magenta,blue -n server,client \"yarn server:build\" \"yarn client:build\"",
"server:install": "cd server && yarn install",
"server:build": "cd server && yarn build",
"server:start": "cd server && yarn start",
"client:install": "cd client && yarn install",
"client:build": "cd client && yarn build",
"client:start": "cd client && yarn start"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.2.0",
"@graphql-codegen/fragment-matcher": "^1.2.0",
"@graphql-codegen/typescript-compatibility": "^1.2.0",
"@graphql-codegen/typescript-operations": "^1.2.0",
"@graphql-codegen/typescript-react-apollo": "^1.2.0",
"@graphql-codegen/typescript-resolvers": "^1.2.0",
"concurrently": "^4.1.0",
"graphql": "^14.3.0"
}
}