-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "trivia",
"version": "1.0.0",
"description": "a rest api for multiple choice trivia questions",
"main": "src/server.js",
"scripts": {
"test": "node tests/index.js",
"start": "node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgoralcz/trivia.git"
},
"author": "Joshua Goralczyk <joshgor01@gmail.com> (https://github.com/jgoralcz/trivia)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgoralcz/trivia/issues"
},
"homepage": "https://github.com/jgoralcz/trivia#readme",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"log4js": "^6.9.1",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/express": "^4.17.20",
"axios": "^1.5.1",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1"
}
}