forked from lukePeavey/quotable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
{
"name": "quotable",
"version": "1.0.0-beta2",
"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",
"start:debug": "NODE_ENV=development --inspect nodemon",
"lint": "./node_modules/.bin/eslint . --color && echo \"eslint: no lint errors\"",
"test": "jest",
"test:watch": "jest --watchAll",
"database:seed": "node scripts/seedDatabase.js",
"deploy:production": "heroku pipelines:promote -a quotable-api-staging"
},
"lint-staged": {
"{src,data}/**/*.{js,css,json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "4.17.1",
"http-errors": "^1.7.2",
"jsonfile": "5.0.0",
"lodash": "^4.17.15",
"moesif-express": "^2.9.10",
"mongodb": "^3.3.2",
"mongoose": "^5.7.1",
"request-ip": "^2.1.3",
"shortid": "^2.2.15"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"husky": "^2.4.1",
"jest": "^24.9.0",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"shelljs": "^0.8.3",
"supertest": "^4.0.2"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"keywords": [
"node",
"express",
"RESTful",
"rest-api",
"micro-service"
]
}