forked from anahit42/baby-gear-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "baby-gear-api",
"description": "API for Baby Gear Shop",
"version": "1.0.0",
"author": "Anahit Vardanyan",
"bugs": {
"url": "https://github.com/anahit42/baby-gear-api/issues"
},
"dependencies": {
"@elastic/elasticsearch": "^7.7.1",
"@hapi/joi": "^17.1.1",
"agenda": "^3.1.0",
"aws-sdk": "^2.675.0",
"bcrypt": "^4.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"config": "^3.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-type": "^14.4.0",
"http-status-codes": "^1.4.0",
"i18n-iso-countries": "^5.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.10",
"multer": "^1.4.2",
"stripe": "^8.55.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"fixpack": "^3.0.6",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/anahit42/baby-gear-api#readme",
"license": "ISC",
"main": "src/index.js",
"pre-commit": [
"precommit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anahit42/baby-gear-api.git"
},
"scripts": {
"fixpack": "fixpack",
"index-products": "node src/scripts/indexing.js",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src --fix",
"precommit": "node ./node_modules/eslint/bin/eslint.js ./src",
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}