-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.38 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 MongoDB 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",
"mongodb"
],
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.6.7",
"bcryptjs": "^2.4.3",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.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.2.7",
"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": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-graphql": "^0.8.0",
"@types/graphql": "^14.2.2",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongodb": "^3.1.28",
"@types/node": "^12.0.10"
}
}