-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.06 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
{
"name": "Questioner",
"version": "1.0.0",
"description": "Questioner is a web app that allows meetups to be created, and allows questions to be posted to the meetups with the options of being voted up or down.",
"engines": {
"node": "10.14.2"
},
"main": "index.js",
"scripts": {
"create": "babel-node Server/migration/createTable.js",
"drop": "babel-node Server/migration/dropTable.js",
"lint": "node ./node_modules/.bin/eslint",
"test": "cross-env NODE_ENV=test nyc --require @babel/register mocha Server/test --exit",
"start": "babel-node Server/app.js",
"startdev": "nodemon --exec babel-node Server/app.js",
"build": "rimraf dist/ && babel ./server -d dist",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"node",
"heroku",
"express"
],
"author": "Jude Chinoso",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.2.0",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.1",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"joi-json": "^2.1.0",
"jsonwebtoken": "^8.4.0",
"pg": "^7.8.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0",
"should": "^13.2.3"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"files": [
"Server/"
],
"sourceMap": false,
"instrument": false
}
}