-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
{
"name": "bookshelf",
"version": "1.0.0",
"repository": "[email protected]:lucassus/bookshelf.git",
"author": "Łukasz Bandzarewicz <[email protected]>",
"private": true,
"engines": {
"node": "18.15.0"
},
"workspaces": {
"packages": [
"apps/*",
"libs/*"
]
},
"devDependencies": {
"@graphql-cli/codegen": "1.17.13",
"@graphql-cli/coverage": "2.1.0",
"@graphql-cli/diff": "2.1.0",
"@graphql-cli/similar": "2.1.0",
"@graphql-cli/validate": "2.1.0",
"@graphql-codegen/cli": "1.19.1",
"@graphql-codegen/fragment-matcher": "2.0.0",
"@graphql-codegen/introspection": "1.18.0",
"@graphql-codegen/near-operation-file-preset": "1.17.12",
"@graphql-codegen/schema-ast": "1.18.0",
"@graphql-codegen/typescript": "1.17.11",
"@graphql-codegen/typescript-operations": "1.17.9",
"@graphql-codegen/typescript-react-apollo": "2.1.1",
"@graphql-codegen/typescript-resolvers": "1.17.10",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/jest": "29.5.1",
"@types/node": "20.2.5",
"@types/prettier": "2.1.5",
"@types/rimraf": "4.0.5",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"concurrently": "5.3.0",
"eslint": "7.13.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.1.4",
"graphql": "15.4.0",
"graphql-cli": "4.1.0",
"jest": "29.5.0",
"jest-watch-typeahead": "2.2.2",
"prettier": "2.1.2",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"scripts": {
"clean": "yarn workspaces run clean",
"typecheck": "yarn workspaces run typecheck",
"build": "yarn workspaces run build",
"lint": "yarn workspaces run lint",
"test": "yarn jest",
"start": "yarn workspace @bookshelf/server start",
"dev-server": "yarn workspace @bookshelf/server dev",
"dev-web": "yarn workspace @bookshelf/web dev",
"dev": "concurrently --kill-others-on-fail 'yarn:dev-*'"
}
}