-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.19 KB
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
80
81
{
"name": "hacker-bay-backend",
"version": "1.0.0",
"private": true,
"engines": {
"node": "10.4.1",
"npm": "6.1.0"
},
"scripts": {
"prestart": "npm run -s build",
"start": "node dist/app",
"dev": "nodemon src/app --exec \"node -r babel-register\"",
"clean": "rimraf dist",
"build": "npm run clean && mkdir dist && babel src -s -d dist",
"test": "mocha --opts ./mocha.opts __test__/**/*/*.spec.js",
"test:coverage": "istanbul cover __test__/**/*/*.spec.js",
"lint": "esw src"
},
"dependencies": {
"app-root-path": "^2.1.0",
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"class-autobind": "^0.1.4",
"cloudinary": "^1.13.2",
"config": "^3.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"debug": "latest",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-fileupload": "^1.1.10",
"express-upload": "^0.1.0",
"faker": "^4.1.0",
"fast-json-patch": "^2.0.4",
"fs": "0.0.1-security",
"http": "0.0.0",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1",
"mongoose": "^5.9.27",
"mongoose-hidden": "^1.6.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"multer-storage-cloudinary": "^2.2.1",
"path": "^0.12.7",
"q": "^1.5.1",
"query-string": "^6.13.1",
"request": "^2.88.2",
"request-promise": "^4.2.2",
"requestify": "^0.2.5",
"rimraf": "^2.6.2",
"slugify": "^1.3.3",
"swagger-jsdoc": "^3.2.5",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"validatorjs": "^3.15.1",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"env-test": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-watch": "^3.1.3",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
"should": "^13.1.3",
"supertest": "^3.0.0"
}
}