This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
104 lines (104 loc) · 3.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "graphback-monorepository",
"version": "1.0.0",
"private": true,
"description": "Mono repository for Graphback project",
"main": "index.js",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/eslint-plugin-tslint": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"del-cli": "3.0.1",
"eslint": "7.15.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unused-imports": "0.1.3",
"husky": "4.3.6",
"jest": "26.6.3",
"lerna": "3.22.1",
"lerna-changelog": "1.0.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"replace": "1.2.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typedoc": "0.19.2",
"typedoc-plugin-markdown": "2.4.2",
"typescript": "4.1.3"
},
"scripts": {
"bench": "cd performance && yarn start",
"bench:docker": "docker run -it --rm -v \"$PWD\":/usr/src/bench -w /usr/src/bench -m=\"256m\" --cpus=\"2\" --user \"$(id -u):$(id -g)\" node:14.10 npm run bench",
"test": "jest -w 1",
"test:integration": "cd integration && yarn && yarn integration",
"coverage": "jest --coverage",
"bootstrap": "lerna bootstrap --no-ci",
"lint": "eslint 'packages/*/src/**/*.ts'",
"lint-fix": "eslint 'packages/*/src/**/*.ts' --fix",
"unlock": "lerna exec -- del package-lock.json && del yarn.lock",
"build": "lerna run --no-private build",
"watch": "lerna run watch",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"generate:doc": "./scripts/generateApiDoc.sh",
"publish:canary": "lerna publish --canary",
"release:publish": "./scripts/publishRelease.sh",
"link": "lerna exec npm link .",
"clean": "npm-run-all clean:*",
"clean:packages": "lerna run clean",
"clean:dependencies": "lerna clean --yes",
"core-workspace": "yarn workspace @graphback/core",
"graphback-workspace": "yarn workspace graphback",
"cli-workspace": "yarn workspace graphback-cli",
"codegen-client-workspace": "yarn workspace @graphback/codegen-client",
"create-graphback-workspace": "yarn workspace create-graphback",
"codegen-schema-workspace": "yarn workspace @graphback/codegen-schema",
"datasync-workspace": "yarn workspace @graphback/datasync",
"runtime-knex-workspace": "yarn workspace @graphback/runtime-knex",
"runtime-mongo-workspace": "yarn workspace @graphback/runtime-mongo",
"graphql-migrations-workspace": "yarn workspace graphql-migrations",
"graphql-serve-workspace": "yarn workspace graphql-serve",
"keycloak-authz-workspace": "yarn workspace @graphback/keycloak-authz"
},
"workspaces": [
"packages/*",
"templates/ts-apollo-mongodb-backend",
"templates/ts-apollo-mongodb-datasync-backend",
"templates/ts-apollo-postgres-backend",
"templates/ts-react-apollo-client",
"templates/ts-fastify-mongodb-backend",
"integration"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"changelog": {
"labels": {
"feature": "New Features",
"bug": "Bug Fixes",
"docs": "Documentation"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aerogear/graphback.git"
},
"bugs": {
"url": "https://github.com/aerogear/graphback/issues"
},
"homepage": "https://github.com/aerogear/graphback#readme",
"resolutions": {
"@types/react": "16.14.2"
}
}