-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 870 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 870 Bytes
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
{
"name": "custom-check-examples",
"version": "1.0.0",
"description": "A Netlify Function that uses graphql-eslint to implement a Custom Check integration",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "netlify dev",
"prestart": "npm run prettier:check ; npm run build",
"prettier:write": "npx prettier . --write",
"prettier:check": "npx prettier . --check"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.11.4",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.0",
"@graphql-eslint/eslint-plugin": "^4.0.0-alpha.4",
"@netlify/functions": "^4.0.0",
"eslint": "^9.9.0",
"graphql": "^16.9.0"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"json-schema-to-ts": "^3.1.0",
"prettier": "3.6.2",
"typescript": "^5.5.4"
}
}