-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "jxa-graphql",
"version": "0.0.12",
"main": "lib/index.js",
"bin": "lib/cmd.js",
"files": [
"lib/"
],
"repository": "https://github.com/potsbo/jxa-graphql",
"author": "Shimpei Otsubo <[email protected]>",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^8.3.2",
"@graphql-tools/utils": "^8.6.1",
"@jxa/run": "^1.3.4",
"apollo-server": "^3.6.3",
"camelcase": "^6.3.0",
"execa": "^5.1.1",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"patch-package": "^6.4.7",
"xml2js": "^0.4.23",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"axios": "^0.26.0",
"eslint": "^8.10.0",
"jest": "^27.5.1",
"jest-serializer-graphql-schema": "^4.10.0",
"mock-argv": "^2.0.8",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"prepack": "npm run build",
"postinstall": "patch-package",
"lint": "eslint --ext .ts,.js --max-warnings 0 src"
}
}