forked from lukePeavey/quotable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "quotable",
"version": "0.2.0",
"description": "Random quote API",
"author": "Luke Peavey",
"private": true,
"homepage": "https://github.com/lukepeavey/quotable",
"repository": {
"url": "https://github.com/lukepeavey/quotable"
},
"bugs": {
"url": "https://github.com/lukepeavey/quotable"
},
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start:dev": "NODE_ENV=development nodemon",
"lint": "./node_modules/.bin/eslint . --color && echo \"eslint: no lint errors\"",
"test": "jest",
"test:watch": "jest --watchAll --verbose",
"database:seed": "node scripts/seedDatabase.js",
"deploy:production": "heroku pipelines:promote -a quotable-api-staging"
},
"lint-staged": {
"**/*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"chalk": "^4.0.0",
"cli-table3": "^0.6.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.1",
"http-errors": "^1.7.2",
"is-interactive": "^1.0.0",
"lodash": "^4.17.21",
"moesif-express": "^2.9.15",
"mongodb": "^3.5.5",
"mongoose": "^5.9.5",
"ora": "^5.0.0",
"query-string": "^6.14.1",
"request-ip": "^2.1.3",
"shortid": "^2.2.15"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.2",
"prettier": "^2.1.1",
"supertest": "^4.0.2"
},
"engines": {
"node": ">=12.0",
"npm": ">=6.0"
},
"keywords": [
"node",
"express",
"RESTful",
"rest-api",
"micro-service"
]
}