-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "restapi",
"version": "1.0.0",
"description": "A simple REST API boilerplate created using Hapi, Boom, Joiful, Pagination, Swagger and OAuth2.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn ./src/server.ts",
"seed": "ts-node ./src/seed.ts",
"test": "jest",
"compile": "tsc",
"mysql:start": "docker-compose up -d",
"mysql:stop": "docker-compose down",
"migrate:save": "npx prisma migrate dev --name dev",
"prisma:generate": "npx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^20.1.2",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.0.1",
"@prisma/client": "^2.22.0",
"bcrypt": "^5.0.1",
"client-oauth2": "^4.3.3",
"config": "^3.3.6",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"hapi-auth-jwt2": "^10.2.0",
"hapi-swagger": "^14.1.2",
"joi": "^17.3.0",
"joiful": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/hapi__hapi": "^20.0.8",
"@types/jest": "^26.0.9",
"@types/jsonwebtoken": "^8.5.1",
"@types/node-fetch": "^2.5.10",
"jest": "^26.3.0",
"prisma": "^2.22.0",
"ts-jest": "^26.2.0",
"ts-node": "8.10.2",
"ts-node-dev": "^1.0.0-pre.52",
"types-joi": "^2.1.0",
"typescript": "^3.9.6"
},
"engines": {
"node": ">=12.0.0"
}
}