-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.51 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
60
{
"name": "disney-api",
"version": "0.1.0",
"description": "The REST API based on Disney characters",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"start:dev": "nodemon src/server.js",
"test": "mocha src/**/*.test.js --exit",
"test:watch": "nodemon --exec 'npm test'",
"format": "prettier --write '**/*.js'",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://www.github.com/ManuCastrillonM/disney-api"
},
"keywords": [
"disney",
"nodejs",
"express",
"rest",
"graphql"
],
"author": "Manuela Castrillon <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ManuCastrillonM/disney-api/issues"
},
"homepage": "https://github.com/ManuCastrillonM/disney-api",
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"husky": "^4.3.8",
"mocha": "^10.2.0",
"nodemon": "^2.0.13",
"pretty-quick": "^2.0.2",
"standard": "^14.3.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.6.0",
"mongoose": "^5.13.9",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.10.0",
"path": "^0.12.7",
"prettier": "^2.4.1",
"supertest": "^6.3.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}