-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/index.js",
"build": "babel src -s -d dist",
"start": "node dist/index.js",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register 'src/test/**/*.js' --exit --timeout 15000",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"local": "cross-env NODE_ENV=test nyc --reporter=html --reporter=text mocha --require @babel/register 'src/test/**/*.js' && nyc coverage/index.html"
},
"engines": {
"node": "10.16.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/runtime": "^7.4.5",
"bcrypt": "^3.0.6",
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"config": "^3.1.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.1.5",
"helmet": "^3.15.1",
"is-url": "^1.2.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.14",
"pg": "^7.11.0",
"swagger-ui-express": "^4.0.7",
"winston": "^2.4.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.4",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
}
}