-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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
36
37
38
39
40
41
42
{
"name": "graphql-codegen-demo",
"scripts": {
"build:all": "lerna run build --stream",
"clean": "lerna run clean",
"type-check": "lerna run type-check --stream --scope=\"@mydemo/client\" --scope=\"@mydemo/server\"",
"build": "yarn build:all",
"start:client": "lerna run start --stream --scope=\"@mydemo/client\"",
"build:client": "lerna run build --stream --scope=\"@mydemo/client\"",
"start:server": "lerna run start --stream --scope=\"@mydemo/server\"",
"codegen": "lerna run codegen --stream --scope=\"@mydemo/api\"",
"start": "run-p start:client start:server",
"lint": "lerna run lint --stream",
"test": "run-p lint type-check"
},
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"babel-loader": "^8.2.2",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^15.5.0",
"lerna": "3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.2.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0"
}
}