-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.13 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
{
"private": true,
"name": "micro-graphql-monorepo",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "run-s build:lib build:example && run-p dev:*",
"dev:core": "yarn workspace @micro-graphql/core run dev",
"dev:hooks": "yarn workspace @micro-graphql/hooks run dev",
"dev:example": "yarn workspace @micro-graphql/example run dev",
"dev:cra-example": "yarn workspace @micro-graphql/cra-example run start",
"dev:next-example": "yarn workspace @micro-graphql/next-example run dev",
"build": "run-s build:lib build:examples",
"build:lib": "run-s build:core && run-p build:hooks",
"build:core": "yarn workspace @micro-graphql/core run build",
"build:hooks": "yarn workspace @micro-graphql/hooks run build",
"build:examples": "run-s build:example && run-p build:next-example build:cra-example",
"build:example": "yarn workspace @micro-graphql/example run build",
"build:cra-example": "yarn workspace @micro-graphql/cra-example run build",
"build:next-example": "yarn workspace @micro-graphql/next-example run build",
"ci": "run-p jest lint",
"jest": "jest --config jest.config.json --no-cache --coverage",
"test": "run-s build:lib jest",
"lint": "eslint packages/*/src/**/*.ts packages/*/test/**/*.ts packages/*/test/**/*.tsx packages/next-example/**/*.tsx",
"pub": "yarn build && lerna publish"
},
"devDependencies": {
"@playlyfe/gql": "^2.6.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/isomorphic-fetch": "^0.0.34",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"graphql-cli": "^3.0.14",
"jest": "^25.1.0",
"jest-each": "^25.1.0",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"version": "0.0.0",
"dependencies": {
"jest-fetch-mock": "^3.0.1"
}
}