-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "runeql",
"version": "1.0.0",
"description": "GraphQL API for Old School Runescape Game Data",
"main": "src/server.js",
"repository": "https://github.com/schmidlidev/runeql.git",
"author": "schmidli <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development nodemon src/server.js -e js,gql",
"production": "NODE_ENV=production node src/server.js",
"lint": "yarn run eslint src/ --ext .js,.ts"
},
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.6"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^6.2.7",
"@graphql-tools/load": "^6.2.8",
"@graphql-tools/schema": "^7.1.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-prom-bundle": "^6.3.6",
"graphql": "^15.4.0",
"graphql-depth-limit": "^1.1.0",
"graphql-tools": "^7.0.2",
"http": "^0.0.1-security",
"https": "^1.0.0",
"mongodb": "^3.6.3",
"node-fetch": "^2.6.1",
"prom-client": "^13.1.0",
"typescript": "^4.3.5"
}
}