-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "example-api-sandbox",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/gqty-dev/sandbox-examples-api#readme",
"bugs": {
"url": "https://github.com/gqty-dev/sandbox-examples-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gqty-dev/sandbox-examples-api.git"
},
"license": "MIT",
"author": "PabloSz <[email protected]>",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "bob-tsm --node-env=dev --watch=src src/index.ts",
"prepare": "prisma generate",
"pretty": "prettier --write \"**/*.{ts,js,mjs,cjs}\"",
"start": "bob-tsm --node-env=prod src/index.ts",
"typecheck": "tsc"
},
"dependencies": {
"@graphql-ez/fastify": "^0.9.5",
"@graphql-ez/plugin-altair": "^0.9.7",
"@graphql-ez/plugin-codegen": "^0.7.7",
"@graphql-ez/plugin-modules": "^0.10.0",
"@graphql-ez/plugin-scalars": "^0.7.3",
"@graphql-ez/plugin-voyager": "^0.9.1",
"@graphql-ez/plugin-websockets": "^0.10.2",
"@prisma/client": "^3.7.0",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"faker": "^5.5.3",
"fastify": "^3.25.3",
"graphql": "^16.2.0",
"graphql-ez": "^0.13.7",
"jsonwebtoken": "^8.5.1",
"lodash-es": "^4.17.21",
"ms": "^2.1.3",
"node-schedule": "^2.1.0",
"p-lazy": "^4.0.0",
"prisma": "^3.7.0"
},
"devDependencies": {
"@types/faker": "^5.5.9",
"@types/jsonwebtoken": "^8.5.6",
"@types/lodash": "^4.14.178",
"@types/lodash-es": "^4.17.5",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.6",
"@types/node-schedule": "^1.3.2",
"bob-tsm": "^0.4.4",
"esbuild": "^0.14.10",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}