-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
{
"name": "do",
"private": true,
"version": "1.0.0",
"module": "./dist/index.mjs",
"type": "module",
"scripts": {
"postinstall": "husky install",
"build": "rollup -c",
"test": "jest --coverage",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore .",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "concurrently \"npm:check-types\" \"npm:test\" \"lint-staged\" \"npm:build\"",
"setup": "npm install && npm run validate"
},
"author": {
"name": "Greg Brimble",
"email": "greg@glenstack.com",
"url": "https://glenstack.com/"
},
"bugs": {
"url": "https://github.com/glenstack/do/issues",
"email": "hello@glenstack.com"
},
"repository": {
"type": "git",
"url": "https://github.com/glenstack/do.git"
},
"homepage": "https://github.com/glenstack/do#readme",
"devDependencies": {
"@cloudflare/workers-types": "github:GregBrimble/workers-types",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-dynamic-import-vars": "1.1.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.1.1",
"@rollup/plugin-replace": "2.3.4",
"@rollup/plugin-typescript": "8.1.1",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"concurrently": "5.3.0",
"cross-fetch": "3.0.6",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"husky": "5.0.9",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"rollup": "2.38.5",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"@glenstack/cf-workers-graphql": "1.0.4",
"@graphql-tools/delegate": "7.0.10",
"@graphql-tools/merge": "6.2.7",
"@graphql-tools/schema": "7.1.3",
"@graphql-tools/stitch": "7.3.0",
"@graphql-tools/wrap": "7.0.5",
"graphql": "15.3.0",
"graphql-tag": "2.11.0"
}
}