-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "authentication-nodejs",
"version": "1.0.0",
"description": "User authentication registration API.",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "tsx --watch ./src/index.ts",
"build": "tsc",
"clean": "rimraf ./out",
"start": "npm run clean && npm run build && node ./out/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gustavo-sotero/authentication-nodejs.git"
},
"keywords": [
"authentication",
"nodejs",
"koa",
"prisma",
"jwt"
],
"author": "Gustavo Sotero",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.0",
"koa-body": "^6.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/eslint": "^8.56.2",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/koa": "^2.14.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.11.10",
"@types/supertest": "^6.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"prisma": "^5.9.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}