-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 2.15 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
{
"name": "mydiary",
"version": "1.0.0",
"description": "Server side app that provides mydiary ui client with data",
"engines": {
"node": "12.13.0"
},
"main": "index.js",
"scripts": {
"test": "babel-node node_modules/mocha/bin/_mocha test/*.js --timeout 10000 --exit",
"pretest": "eslint .",
"lintfix": "eslint . --fix",
"build": "npm run lintfix && babel server -d dist",
"db": "babel-node ./server/dbconfig/database.js",
"cover": "babel-node ./node_modules/babel-istanbul/lib/cli cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec --timeout 10000 test/*.js --exit",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"dev": "nodemon --watch server --exec babel-node ./server/server",
"start": "npm run build && node ./dist/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alameen688/MyDiary.git"
},
"author": "Ogundiran Al-Ameen",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alameen688/MyDiary/issues"
},
"homepage": "https://github.com/Alameen688/MyDiary#readme",
"dependencies": {
"@babel/runtime": "^7.7.4",
"@babel/runtime-corejs2": "^7.7.4",
"bcrypt": "^3.0.7",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"joi": "^13.4.0",
"jsonwebtoken": "^8.3.0",
"mailgun-js": "^0.20.0",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-fetch": "^2.6.0",
"node-schedule": "^1.3.0",
"pg": "^7.4.3",
"swagger-ui-express": "^3.0.10",
"underscore": "^1.9.1",
"unsplash-js": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-istanbul": "^0.12.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.2"
}
}