-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 881 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
34
35
{
"name": "ecosystem-dashboard-ql-server",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.3.3",
"apollo-server-core": "^3.6.3",
"apollo-server-express": "^3.6.3",
"apollo-server-plugin-response-cache": "^3.7.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"datasource-sql": "^1.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^7.7.2",
"graphql": "^16.3.0",
"graphql-scalars": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.0.0",
"lodash": "^4.17.21",
"pg": "^8.7.3"
},
"devDependencies": {
"nodemon": "^2.0.16"
}
}