-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "skeet-graphql",
"version": "0.6.6",
"description": "Skeet GraphQL - TypeScript Serverless Framework",
"main": "dist/index.js",
"repository": "https://github.com/elsoul/skeet-graphql.git",
"author": "POPPIN-FUMI",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "jest --coverage=false --detectOpenHandles --maxWorkers=1",
"update:packages": "ncu -u && yarn",
"build": "npx ts-node build.ts",
"devBuild": "npx ts-node devBuild.ts",
"publish": "npm publish",
"s": "npx ts-node -r tsconfig-paths/register --transpile-only src/index.ts hey",
"nodemon": "yarn s && npx ts-node devBuild.ts && node ./dist/index.js",
"dev": "nodemon",
"start": "node dist/index.js",
"db:dev": "npx prisma migrate dev",
"db:deploy": "npx prisma migrate deploy",
"db:seed": "npx prisma db seed"
},
"prisma": {
"seed": "npx ts-node --transpile-only prisma/seed.ts"
},
"dependencies": {
"@apollo/server": "4.9.5",
"@jcm/nexus-plugin-relay-global-id": "0.2.0",
"@jcm/nexus-plugin-relay-node-interface": "0.2.0",
"@prisma/client": "5.6.0",
"@skeet-framework/utils": "1.2.3",
"firebase-admin": "11.11.1",
"graphql": "16.8.1",
"graphql-depth-limit": "1.1.0",
"graphql-middleware": "6.1.35",
"graphql-query-complexity": "0.12.0",
"graphql-relay": "0.10.0",
"graphql-shield": "7.6.5",
"nexus": "1.3.0",
"nexus-prisma": "2.0.1",
"prisma": "5.6.0"
},
"devDependencies": {
"@skeet-framework/discord-utils": "^0.2.13",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/graphql-depth-limit": "1.1.6",
"@types/jest": "29.5.10",
"@types/node": "20.10.0",
"@types/node-fetch": "2.6.9",
"@types/superagent": "4.1.24",
"@types/supertest": "2.0.16",
"babel-loader": "9.1.3",
"esbuild": "0.19.8",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.7.0",
"nodemon": "3.0.1",
"npm-check-updates": "16.14.11",
"prettier": "3.1.0",
"prettier-plugin-prisma": "5.0.0",
"superagent": "8.1.2",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.2"
}
}