forked from vsuaste/server-graphql-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
{
"name": "second-server-graphql",
"version": "0.5.6",
"description": "Schema as string",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --ignore 'zendro_migration*.json' server.js",
"test": "mocha test/test.js --exit",
"test:graphiql": "node --test test/graphiql.test.js",
"test:auth": "node --test test/utils/**/*.test.js",
"test:sqlite": "node --test test/connection.sqlite.test.js",
"test:live": "node --test \"test/extra/**/*.test.js\"",
"build:graphiql": "npm --prefix zendro-graphiql run build"
},
"author": "vsuaste",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.1085.0",
"@graphql-tools/load-files": "^7.0.1",
"@graphql-tools/merge": "^9.2.0",
"@vscode/sqlite3": "^5.1.14-vscode",
"acl2": "^4.3.0",
"ajv": "^8.20.0",
"cassandra-driver": "^4.9.0",
"cors": "^2.8.6",
"dataloader": "^2.2.3",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-fileupload": "^1.5.2",
"graphql": "^16.14.2",
"graphql-http": "^1.22.4",
"graphql-scalars": "^1.25.0",
"jsonpath-plus": "^10.4.0",
"jsonwebtoken": "^9.0.3",
"linked-list": "^3.1.0",
"lodash": "^4.18.1",
"mathjs": "^15.2.0",
"mongodb": "^7.5.0",
"neo4j-driver": "^6.2.0",
"node-jq": "^6.3.1",
"nodemailer": "^9.0.3",
"nodemailer-smtp-transport": "=2.4.2",
"openid-client": "^6.8.4",
"pg": "^8.22.0",
"presto-client": "^1.2.0",
"sequelize": "^6.37.8",
"sync-request": "^6.1.0",
"wait-on": "^9.0.10",
"zendro-graphiql": "file:zendro-graphiql"
},
"devDependencies": {
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"mocha": "^11.7.6",
"nodemon": "^3.1.9",
"rewire": "^9.0.1"
},
"allowScripts": {
"node-jq@6.3.1": true
}
}