-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"name": "@aiswarm/api-graphql",
"version": "0.1.9",
"description": "",
"main": "index.js",
"type": "module",
"keywords": [
"@aiswarm:plugin"
],
"scripts": {
"start": "echo \"No start script\" && exit 1",
"test": "echo '(no tests)'",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml,graphql}": [
"prettier --write"
]
},
"author": "Ravi Gairola <[email protected]>",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"fastify": "^4.24.3",
"@fastify/cors": "^8.4.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-subscriptions": "^2.0.0",
"mercurius": "^13.3.0"
},
"peerDependencies": {
"@aiswarm/orchestrator": "^0.1.9"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"prettier": "^3.6.0"
}
}