-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "jwt-mongodb-graphql",
"version": "1.0.0",
"description": "Sistema de autenticación JWT con mongo DB en GraphQL",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc -p . && ncp src/schema build/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon \"src/server.ts\" --exec \"ts-node\" src/server.ts -e ts,graphql"
},
"keywords": [
"graphql",
"graphql-curso",
"jwt",
"mongo-db"
],
"author": "Gabriel Quispe Rosas",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.6.7",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.3.1",
"graphql-import-node": "0.0.4",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-tools": "^4.0.5",
"http": "0.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"ncp": "^2.0.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.0",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^12.0.10"
}
}