This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.99 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
{
"name": "auto-graphql-server",
"version": "0.1.0",
"description": "Automaticly generating server component from Graphql schema",
"main": "index.js",
"repository": "https://github.com/voidpumpkin/auto-graphql-server.git",
"author": "Julius Lungys <[email protected]>",
"license": "MIT",
"scripts": {
"test": "ts-node ./tests/before.ts && yarn test-step-mocha && ts-node ./tests/after.ts",
"test-step-mocha": "mocha --recursive tests/ --extension test.ts --require ts-node/register --ui mocha-cakes-2 --exit --reporter mochawesome --timeout 0",
"cleaninstall": "rm -rf node_modules && yarn cache clean && yarn",
"lint": "eslint ./src/**/* --ext .js,.ts --fix",
"dev": "ts-node-dev --watch data/schema.graphql src",
"start": "ts-node src"
},
"dependencies": {
"@types/koa": "^2.11.7",
"@types/koa-graphql": "^0.8.4",
"@types/koa-mount": "^4.0.0",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^14.14.22",
"graphql": "^15.5.0",
"graphql-directive": "^0.2.1",
"graphql-tools": "^7.0.3",
"knex": "^0.21.17",
"koa": "^2.13.1",
"koa-graphql": "^0.8.0",
"koa-mount": "^4.0.0",
"lodash.merge": "^4.6.2",
"mysql2": "^2.2.5",
"pg": "^8.6.0",
"sqlite3": "5.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.4",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.2",
"mocha-cakes-2": "^3.3.0",
"mochawesome": "^6.2.2",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-node-dev": "^1.1.1"
}
}