-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "koa-ts-graphql",
"version": "1.0.0",
"description": "A Koa2 project with TypeScript/GraphQL",
"author": "xpioneer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xpioneer/koa-graphql-typescript.git"
},
"bugs": {
"url": "https://github.com/xpioneer/koa-graphql-typescript/issues"
},
"scripts": {
"start": "npm run dev",
"build": "tsc",
"build-server": "tslint --project . && tsc",
"dev": "NODE_ENV=development nodemon --config nodemon.json",
"test": "NODE_ENV=development node ./release/conf/server.js"
},
"dependencies": {
"axios": "^0.21.1",
"dataloader": "^2.0.0",
"date-fns": "^2.23.0",
"graphql": "^15.5.1",
"ioredis": "^5.4.1",
"koa": "^2.15.3",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
"mongodb": "^6.8.0",
"mysql2": "^3.11.0",
"reflect-metadata": "^0.2.2",
"remove": "^0.1.5",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/koa": "^2.15.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.32",
"@types/node": "^16.6.0",
"koa-logger": "^3.2.0",
"nodemon": "^3.1.4",
"ts-node": "^10.2.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.5.4"
}
}