-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "regenbogen-ice-api",
"version": "1.0.0",
"main": "dist/src/index.js",
"repository": "https://github.com/regenbogen-ice/api.git",
"author": "AdriDevelopsThings, PhilippIRL",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/luxon": "^2.0.9",
"@types/node": "^17.0.21",
"@types/rss": "^0.0.29",
"typescript": "^4.5.5"
},
"dependencies": {
"apollo-server": "^3.10.2",
"apollo-server-express": "^3.10.2",
"apollo-server-plugin-response-cache": "^3.7.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-handler": "^1.2.0",
"graphql": "^16.6.0",
"knex": "^2.4.0",
"luxon": "^2.3.1",
"mysql2": "^2.3.3",
"node-fetch": "^3.2.10",
"rabbit-queue": "^5.4.1",
"redis": "^4.0.4",
"rss": "^1.2.2",
"shoutrrrd-js": "^1.0.3",
"sitemap": "^7.1.1"
},
"scripts": {
"build": "tsc",
"start": "tsc && node dist/src/index.js"
},
"types": "./@types/index.d.ts"
}