-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.08 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
79
{
"name": "grower-ledger-backend",
"version": "1.0.0",
"private": true,
"description": "this is back-end of social network",
"scripts": {
"start": "node ./dist/bin/www/server.js",
"dev": "nodemon --exec babel-node ./src/bin/www/server.js --config nodemon.json",
"test:dev": "jest ./src/test/development",
"test:prod": "jest ./src/test/production/prod.test.js",
"coverage": "jest --collectCoverageFrom=test/**.js --coverage test",
"debug": "node inspect ./src/app.js",
"lint": "eslint **/*.js --fix",
"build": "babel src --out-dir dist",
"serve": "node ./dist/bin/www/server.js"
},
"author": {
"name": "Fahad Talpur",
"email": "[email protected]"
},
"license": "ISC",
"files": [
"dist",
"src"
],
"cacheDirectories": [
"node_modules"
],
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.3",
"@babel/node": "7.2.2",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/runtime": "7.4.3",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"eslint": "^5.12.0",
"eslint-plugin-security": "1.4.0",
"husky": "1.3.1",
"jest": "24.1.0",
"morgan": "1.9.1",
"nodemon": "1.18.9",
"shelljs": "0.8.3",
"supertest": "3.3.0"
},
"dependencies": {
"agenda": "2.0.2",
"async-redis": "1.1.7",
"await-to-js": "2.1.1",
"aws-sdk": "2.382.0",
"axios": "0.19.0",
"bcryptjs": "2.4.3",
"bluebird": "3.5.3",
"body-parser": "^1.18.3",
"celebrate": "^9.1.0",
"cors": "2.8.5",
"dotenv": "6.2.0",
"express": "4.16.4",
"express-rate-limit": "^3.4.0",
"joi-objectid": "^2.0.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.0",
"mongoose-validator": "^2.1.0",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"uuid": "^3.3.2",
"moment": "2.24.0",
"moment-timezone": "0.5.25"
},
"engines": {
"node": ">= 8.0.0"
}
}