-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "graphql-testkit",
"version": "1.0.35",
"license": "MIT",
"main": "bin/graphql-testkit",
"keywords": [
"graphql",
"test",
"javascript",
"cli",
"tooling",
"test",
"testkit"
],
"repository": {
"type": "git",
"url": "git://github.com/wednesday-solutions/graphql-testkit.git"
},
"author": "Mac",
"homepage": "https://github.com/wednesday-solutions/graphql-testkit",
"scripts": {
"lint": "npm run lint:js",
"lint:eslint": "eslint",
"lint:eslint:fix": "eslint --fix src/*.js",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prettify": "prettier --write",
"webpack:prod": "webpack --mode=production --progress",
"prepublishOnly": "yarn webpack:prod",
"local": "webpack --mode=development && node bin/graphql-testkit"
},
"dependencies": {
"bluebird": "^3.7.2",
"get-graphql-schema": "^2.1.2",
"lodash": "^4.17.21",
"ora": "^8.1.0",
"shell-quote": "^1.8.1",
"uuid": "^10.0.0"
},
"bin": {
"graphql-testkit": "bin/graphql-testkit.js"
},
"lint-staged": {
"src/*.js": [
"npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"coveralls": "^3.1.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"shelljs": "^0.8.5",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}