forked from vsuaste/express_graphql_model_gen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "graphql-server-model-codegen",
"version": "0.5.6",
"description": "Command line utility which auto-generates code to setup and run a Science-DB GraphQL web-server. See sciencedb.github.io.",
"repository": {
"type": "git",
"url": "https://github.com/ScienceDb/graphql-server-model-codegen"
},
"main": "index.js",
"bin": {
"graphql-server-model-codegen": "index.js"
},
"scripts": {
"test-unit": "mocha ./test/mocha_unit.test.js",
"test-integration": "bash ./test/testenv_cli.sh",
"test-migration": "mocha ./test/mocha_migration.test.js"
},
"author": "Science-DB team",
"license": "GPL-3.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"@aws-sdk/lib-storage": "^3.370.0",
"ajv": "^8.11.0",
"colors": "^1.4.0",
"commander": "^9.4.0",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"inflection": "^1.13.2",
"js-beautify": "^1.14.6",
"sync-request": "^6.1.0"
},
"devDependencies": {
"axios": "^0.27.2",
"chai": "^4.3.6",
"delay": "^5.0.0",
"eslint": "^8.23.0",
"eslint-plugin-ejs": "0.0.2",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.0.0",
"require-from-string": "^2.0.2"
}
}