-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
{
"name": "my-diary",
"version": "1.0.0",
"description": "MyDiary is an online journal where users can pen down their thoughts and feelings",
"main": "index.js",
"engines": {
"node": "10.7.0"
},
"scripts": {
"dev": "nodemon server/index.js --exec babel-node",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 10000 --exit",
"build": "babel server -d dist",
"lint": "eslint server",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olusoladavid/my-diary.git"
},
"author": "Olusola Oguntimehin",
"license": "MIT",
"bugs": {
"url": "https://github.com/olusoladavid/my-diary/issues"
},
"homepage": "https://github.com/olusoladavid/my-diary#readme",
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.2",
"nyc": "^14.0.0",
"prettier-eslint": "^8.8.2",
"sinon": "^6.1.5"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.2.0",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"pg": "^7.4.3",
"pg-connection-string": "^2.0.0",
"swagger-ui-express": "^3.0.10",
"web-push": "^3.3.2",
"yamljs": "^0.3.0"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
}
}