-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "cross-env NODE_DEV=true ts-node-dev -r tsconfig-paths/register src/index.ts",
"migration:create": "npx mikro-orm migration:create",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "woqk",
"license": "ISC",
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/orm.config.ts",
"./dist/orm.config.js"
]
},
"dependencies": {
"@envelop/core": "^1.0.0",
"@envelop/depth-limit": "^1.0.0",
"@envelop/generic-auth": "^1.0.0",
"@envelop/rate-limiter": "^1.0.0",
"@mikro-orm/cli": "^4.5.7",
"@mikro-orm/core": "^4.5.7",
"@mikro-orm/migrations": "^4.5.7",
"@mikro-orm/postgresql": "^4.5.7",
"class-validator": "^0.13.1",
"cross-env": "^7.0.3",
"fastify": "^3.19.2",
"graphql": "^15.5.1",
"graphql-fields-to-relations": "^1.0.4",
"graphql-helix": "^1.6.1",
"graphql-middleware": "^6.0.10",
"graphql-subscriptions": "^1.2.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@types/node": "^16.4.0",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}