-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "apollo-gql-api",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "yarn prisma generate && tsc",
"build:watch": "tsc --watch",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js"
},
"repository": "https://github.com/PythonCreator27/apollo-gql-api",
"author": "Advaiya Lad <advaiya.lad@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/connect-redis": "^0.0.16",
"@types/express": "^4.17.12",
"@types/express-session": "^1.17.3",
"@types/ioredis": "^4.26.4",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^14.17.0",
"nodemon": "^2.0.7",
"prisma": "^2.26.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@prisma/client": "~2.26.0",
"apollo-server-express": "3.0.0",
"argon2": "^0.28.2",
"class-validator": "^0.13.1",
"connect-redis": "^6.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"graphql": "^15.5.0",
"graphql-query-complexity": "^0.8.1",
"ioredis": "^4.27.6",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"engines": {
"node": ">=14.17.0"
}
}