-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "server",
"version": "1.0.0",
"description": "server",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --inspect -e graphql,js,json src/index.js",
"lint": "eslint ./ --fix",
"get-schema": "apollo schema:download --endpoint=http://localhost:4000/graphql schema.json && graphql-introspection-json-to-sdl schema.json | pbcopy && rm schema.json",
"migration:make": "knex migrate:make --knexfile src/database/knexfile.js",
"migration:latest": "knex migrate:latest --knexfile src/database/knexfile.js",
"migration:up": "knex migrate:up --knexfile src/database/knexfile.js",
"migration:down": "knex migrate:down --knexfile src/database/knexfile.js",
"migration:rollback": "knex migrate:rollback --knexfile src/database/knexfile.js",
"seed:make": "knex seed:make --knexfile src/database/knexfile.js",
"seed:run": "knex seed:run --knexfile src/database/knexfile.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/load-files": "^6.2.5",
"@graphql-tools/merge": "^6.2.6",
"@koa/cors": "^3.1.0",
"apollo-server": "^2.19.1",
"apollo-server-koa": "^2.19.1",
"bignumber.js": "^9.0.1",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"graphql-scalars": "^1.7.0",
"graphql-tools": "^7.0.2",
"graphql-upload": "^11.0.0",
"knex": "^0.95.6",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-helmet": "^6.0.0",
"koa-router": "^10.0.0",
"koa-trace": "^1.0.1",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"ms": "^2.1.3",
"objection": "^2.2.4",
"pg": "^8.5.1",
"pluralize": "^8.0.0",
"stack-chain": "^2.0.0",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^0.7.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"nodemon": "^2.0.7"
},
"_moduleAliases": {
"@": "./src"
}
}