-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.52 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
{
"name": "graphql-edge",
"version": "0.9.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "tsc -w",
"clean": "rimraf ./dist/*",
"build": "tsc && node ./tasks/build.mjs",
"test": "jest",
"lint": "eslint --fix --ext .ts,.js ./src",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"esbuild": "^0.15.7",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@cloudflare/workers-types": "^3.16.0",
"@fastly/js-compute": "^0.5.2",
"@graphql-tools/schema": "^9.0.3",
"graphql": "^16.6.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.*\\.ts": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/*.test.ts"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged; test"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}