-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "sls-gql-fed",
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"core",
"subgraphs",
"frontend"
],
"scripts": {
"subgraphs": "npm run start -w subgraphs",
"core": "rover supergraph compose --config supergraph.yaml > dev-schema.graphql && npm run start -w core",
"frontend": "npm run start -w frontend",
"format": "prettier --write \"**/*.+(tsx|ts|js|jsx|json|css|graphql)\"",
"type-check": "tsc -b",
"validate": "scripts/validate",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache \"**/*.+(tsx|ts|js|jsx)\"",
"prepare": "husky install",
"test:subgraphs": "scripts/test-subgraphs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@apollo/rover": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1"
}
}