-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "graphql_api",
"version": "1.0.0",
"description": "A tutorial API project built using NodeJS and GraphQL",
"main": "build/server.js",
"scripts": {
"test": "npm start",
"tsc": "tsc",
"start": "npm run tsc && node ./build/server.js",
"dev": "tsnd --poll --respawn --transpile-only ./api/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/av153k/nodejs_graphql.git"
},
"author": "Abhishek Anand",
"license": "ISC",
"bugs": {
"url": "https://github.com/av153k/nodejs_graphql/issues"
},
"homepage": "https://github.com/av153k/nodejs_graphql#readme",
"dependencies": {
"@prisma/client": "^2.27.0",
"@types/express-graphql": "^0.9.0",
"@types/graphql": "^14.5.0",
"apollo-server": "^2.25.2",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.1",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.10.0",
"graphql-tools": "^7.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"validator": "^13.6.0",
"bcrypt": "^5.0.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/graphql-fields": "^1.3.4",
"@types/jsonwebtoken": "^8.5.1",
"@types/validator": "^13.6.3",
"@types/bcrypt": "^5.0.0",
"prisma": "^2.27.0",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typegraphql-prisma": "^0.14.7",
"typescript": "^4.3.5"
}
}