-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
56
57
58
{
"name": "world-db-graphql",
"version": "1.0.0",
"description": "Base de datos con países y ciudades",
"main": "build/app.js",
"scripts": {
"start": "node build/app.js",
"build": "npx tsc -p . && ncp src/schema build/schema",
"dev": "nodemon \"src/app.ts\" --exec \"ts-node\" \"src/app.ts\" -e ts,graphql,json",
"lint": "npx eslint . --ext .ts",
"lint.fix": "npx eslint . --ext .ts --fix",
"test": "npx mocha 'test/**/*.js'"
},
"keywords": [
"graphql",
"graphql-basic",
"interfaces",
"query",
"mutation",
"mongodb",
"apollo-server-express-3",
"jwt"
],
"author": "Anartz Mugika Ledo <mugan86@gmail.com>",
"license": "MIT",
"dependencies": {
"@graphql-tools/load-files": "^6.4.0",
"apollo-server-express": "^3.3.0",
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.5.3",
"graphql-import-node": "^0.0.4",
"graphql-tools": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.3.0",
"ncp": "^2.0.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.1",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"chai": "^4.3.6",
"easygraphql-tester": "^6.0.1",
"eslint": "^8.11.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1"
}
}