-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 960 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
{
"name": "fullstack-esbuild",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/jbachhardie/fullstack-esbuild.git",
"author": "[email protected]",
"license": "None",
"private": true,
"workspaces": [
"backend/*",
"frontend/*"
],
"devDependencies": {
"@graphql-codegen/cli": "1.21.6",
"@graphql-codegen/typescript": "1.22.4",
"@graphql-codegen/typescript-operations": "^1.18.3",
"@graphql-codegen/typescript-resolvers": "1.19.5",
"@types/jest": "^26.0.24",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"graphql": "^15.5.1"
},
"scripts": {
"codegen": "graphql-codegen --config codegen.yml",
"start": "run-p start:*",
"start:backend": "yarn workspace @backend/server start",
"start:frontend": "yarn workspace @frontend/app start",
"test": "jest"
}
}