-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.83 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
43
44
45
{
"name": "luminate-workspace",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/**"
]
},
"scripts": {
"test": "lerna run test",
"lint": "lerna run lint",
"prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|css|less|scss|md|mdx|graphql)\"",
"format": "yarn prettier -- --write",
"validate": "yarn lint && yarn prettier -- --list-different && yarn test",
"generate": "graphql-codegen --server --client && yarn format",
"generate:server": "graphql-codegen --server && yarn format",
"generate:client": "graphql-codegen --client && yarn format",
"develop:services": "lerna run develop --parallel --scope={@luminate/identity-schema,@luminate/encyclopedia-schema,@luminate/brewing-schema}",
"develop:gateway": "lerna run develop --parallel --scope=@luminate/gateway-luminate",
"build:utils": "lerna run build --scope={@luminate/mongo-utils,@luminate/graphql-utils}",
"seed-database": "yarn workspace @luminate/mongo-utils run seed-database",
"start:services": "lerna run start --scope={@luminate/identity-schema,@luminate/encyclopedia-schema,@luminate/brewing-schema}",
"start:gateway": "yarn workspace @luminate/gateway-luminate run start"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.20.1",
"@graphql-codegen/typescript": "^1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-codegen/typescript-resolvers": "^1.18.2",
"@types/lodash.merge": "^4.6.6",
"dotenv": "^8.2.0",
"elint": "^2.0.1",
"eslint-config-prettier": "^8.1.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}