-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "Questioner",
"version": "1.0.0",
"description": "Questioner helps the meetup organizer prioritize questions to be answered. Other users can vote on asked questions and they bubble to the top or bottom of the log.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": "10.15.0"
},
"scripts": {
"start": "nodemon --exec babel-node --presets env index",
"test": "nyc --reporter=html --reporter=text mocha --require babel-register --timeout 10000 --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"createTables": "babel-node ./db.js",
"deleteTables": "babel-node ./db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fridolinho/Questioner.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fridolinho/Questioner/issues"
},
"homepage": "https://github.com/fridolinho/Questioner#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"joi-phone-number": "^2.1.1",
"make-runnable": "^1.3.6",
"nodemon": "^1.18.9",
"nyc": "^13.1.0",
"pg": "^7.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"mocha": "^5.2.0",
"moment": "^2.23.0"
}
}