-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 KB
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
{
"name": "@start/api",
"version": "0.0.1",
"description": "Api for our project",
"main": "index.ts",
"author": "Frontlive",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint \"**/*.{ts,tsx}\"",
"dev:server": "wait-on tcp:5432 -i 1000 -t 20000 && node --watch -r ts-node/register ./index.ts",
"dev:db": "docker-compose up -d",
"dev": "concurrently \"yarn dev:db\" \"yarn dev:server\"",
"test": "node -r ts-node/register --test **/*.test.ts"
},
"dependencies": {
"@envelop/auth0": "^3.6.0",
"@escape.tech/graphql-armor": "^1.4.0",
"@faker-js/faker": "^7.6.0",
"@fastify/type-provider-typebox": "^2.3.0",
"@graphql-yoga/node": "^2.13.13",
"@mobily/ts-belt": "^3.13.1",
"@pothos/core": "^3.22.5",
"@pothos/plugin-directives": "^3.8.1",
"@pothos/plugin-prisma": "^3.35.4",
"@pothos/plugin-prisma-utils": "^0.4.7",
"@prisma/client": "^4.6.1",
"@sinclair/typebox": "^0.24.47",
"consola": "^2.15.3",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"fastify": "^4.8.1",
"fastify-plugin": "^4.3.0",
"graphql": "^16.6.0",
"graphql-middleware": "^6.1.33",
"graphql-rate-limit-directive": "^2.0.2",
"graphql-scalars": "^1.19.0",
"graphql-yoga": "^3.0.0-next.3",
"rate-limiter-flexible": "^2.3.12",
"winston": "^3.8.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@tsconfig/node18-strictest": "^1.0.0",
"@types/node": "^18.8.1",
"concurrently": "^7.4.0",
"easygraphql-tester": "^6.0.1",
"graphql-schema-linter": "^3.0.1",
"jest": "^29.1.2",
"prisma": "^4.6.1",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsx": "^3.10.1",
"typescript": "^4.8.4",
"wait-on": "^6.0.1"
},
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
}
}