forked from Zynx64/hydralite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.36 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.36 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@hydralite/api",
"version": "1.0.0",
"main": "dist/index.js",
"license": "Apache-2.0",
"scripts": {
"prisma:migrate": "prisma migrate",
"prisma:push": "prisma db push",
"prisma:generate": "prisma generate",
"prisma:format": "prisma format",
"db:start": "cd .. & npm run db:start",
"db:stop": "cd .. & npm run db:stop",
"dbg:start": "cd .. & npm run dbg:start",
"dbg:stop": "cd .. & npm run dbg:stop",
"api:start": "cd .. & npm run api:start",
"api:stop": "cd .. & npm run api:stop",
"all:start": "cd .. & npm run all:start",
"all:stop": "cd .. & npm run all:stop",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"setup": "node setup.js && npm run prisma:push",
"dev": "ts-node-dev --respawn -r tsconfig-paths/register src/index.ts"
},
"dependencies": {
"@prisma/client": "~2.23.0",
"apollo-server-express": "^2.25.1",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"class-validator": "^0.13.1",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fs": "^0.0.1-security",
"graphql": "^15.5.0",
"graphql-fields": "^2.0.3",
"graphql-query-complexity": "^0.8.1",
"graphql-scalars": "^1.10.0",
"graphql-type-json": "^0.3.2",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-twitter": "^1.0.4",
"pg": "^8.6.0",
"redis": "^3.1.2",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/express-session": "^1.17.3",
"@types/faker": "^5.5.6",
"@types/graphql": "^14.5.0",
"@types/graphql-fields": "^1.3.3",
"@types/ioredis": "^4.26.4",
"@types/passport": "^1.0.6",
"@types/passport-discord": "^0.1.3",
"@types/passport-github2": "^1.2.4",
"@types/passport-google-oauth20": "^2.0.9",
"@types/passport-twitter": "^1.0.37",
"@types/uuid": "^8.3.0",
"faker": "^5.5.3",
"inquirer": "^8.1.2",
"prisma": "^2.25.0",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.6",
"tsc-alias": "^1.3.3",
"tsconfig-paths": "^3.9.0",
"typegraphql-prisma": "^0.14.3",
"typescript": "^4.3.2"
}
}