-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 873 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 873 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
32
33
{
"name": "raspberryql",
"description": "A simple Apollo server to interface with the GOI on a Raspberry Pi",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node ./target/dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.11.3",
"express": "^4.21.2",
"graphql": "^16.10.0",
"graphql-tools": "^9.0.11",
"onoff": "^6.0.3",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}