-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "post-api",
"version": "1.0.0",
"description": "This project was created for a school project.",
"main": "server.ts",
"dependencies": {
"@hapi/hapi": "^18.4.0",
"@hapi/inert": "^5.2.2",
"@hapi/joi": "15.1.1",
"@hapi/vision": "^5.5.4",
"aws-sdk": "^2.580.0",
"dotenv": "^8.2.0",
"eslint": "^6.5.1",
"hapi-auth-keycloak": "^4.3.3",
"hapi-swagger": "^10.2.0",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"node-typescript-compiler": "^2.0.0",
"nodemon": "^1.19.4",
"pg": "^7.12.1",
"typeorm": "^0.2.20"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/hapi__hapi": "^18.2.6",
"@types/node": "^12.11.5",
"ts-jest": "^24.2.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"scripts": {
"test": "jest",
"dev": "nodemon -r ./node_modules/dotenv/config --exec ./node_modules/.bin/ts-node ./src/server.ts",
"build": "tsc",
"lint": "tslint -c tslint.json '**.ts'",
"start": "node ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Singebob/grasbook-post-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Singebob/grasbook-post-api/issues"
},
"homepage": "https://github.com/Singebob/grasbook-post-api#readme"
}