-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
59 lines (59 loc) · 1.63 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
59
{
"name": "rick-morty-api",
"version": "1.0.0",
"description": "Rick and Morty API",
"main": "server.js",
"engines": {
"node": ">= 7.10.1"
},
"scripts": {
"start": "node ./server.js",
"dev": "nodemon ./server.js",
"test": "nyc --check-coverage --lines 95 mocha --exit && nyc report --reporter=lcov",
"test:watch": "nodemon --ext js ./test --exec 'mocha --reporter min'",
"test:mock": "mongorestore --host=localhost:27017 --db=rickmorty-test --drop ./test/data",
"lint": "eslint ."
},
"author": "Axel Fuhrmann",
"license": "BSD-3-Clause",
"dependencies": {
"apollo-datasource-rest": "^0.8.1",
"apollo-server-express": "^2.15.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"graphql": "^14.7.0",
"graphql-depth-limit": "^1.1.0",
"mongoose": "^5.12.5",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-afuh": "^0.1.31",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afuh/rick-and-morty-api.git"
},
"keywords": [
"api",
"rick and morty"
],
"bugs": {
"url": "https://github.com/afuh/rick-and-morty-api/issues"
},
"homepage": "https://github.com/afuh/rick-and-morty-api#readme"
}