-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "code-challenge-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"bin": {
"create-user": "./dist/bin/create-user.js"
},
"scripts": {
"dev:http": "nodemon -w src -e ts --exec \"ts-node -r tsconfig-paths/register ./src/infrastructure/api/http\"",
"http": "node ./dist/infrastructure/api/http",
"serverless:deploy": "./scripts/deploy-serverless.sh",
"test": "jest --coverage",
"build": "tsc && tsc-alias && chmod +x ./dist/bin/*",
"migration:check": "prisma migrate dev",
"migration:apply": "prisma migrate deploy",
"migration:generate": "prisma generate",
"create-user": "./dist/bin/create-user.js"
},
"prisma": {
"seed": "ts-node -r tsconfig-paths/register prisma/seed.ts"
},
"keywords": [],
"author": "Joan Gabriel Peralta Santana <joanperalta13@gmail.com>",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/debug": "^4.1.8",
"@types/jest": "^29.5.2",
"@types/koa": "^2.13.6",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/node": "^20.3.2",
"@types/prompt": "^1.1.5",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"jest-nyancat-reporter": "^2.0.0",
"nodemon": "^2.0.22",
"prompt": "^1.3.0",
"serverless": "^3.32.2",
"serverless-offline": "^12.0.4",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@ohyo-io/jsonrpc2": "^1.0.0",
"@prisma/client": "^4.16.1",
"bcryptjs": "^2.4.3",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"http-status": "^1.6.2",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"koa-helmet": "^7.0.2",
"koa-router": "^12.0.0",
"ms": "^2.1.3",
"prettier": "^2.8.8",
"prisma": "^4.16.1",
"redis": "^4.6.7",
"semver": "^7.5.2",
"serverless-http": "^3.2.0"
}
}