-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
{
"type": "module",
"name": "nodoc-backend",
"version": "0.0.1",
"description": "The backbone of noDoc",
"main": "src/index.ts",
"repository": "https://github.com/nodocapp/backend.git",
"author": "Andrea Giurgola <Andrea.giurgo@gmail.com>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "tsx watch src/index.ts",
"lint": "eslint --fix src/**/*.ts",
"postinstall": "husky install",
"prettier": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/koa": "^2.13.6",
"@types/koa__router": "^12.0.0",
"@types/node": "^20.3.0",
"@types/tadashi__koa-jwt-authz": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"husky": "^8.0.3",
"prettier": "2.8.8",
"prisma": "^4.15.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"undici": "^5.22.1"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@prisma/client": "^4.15.0",
"dotenv": "^16.1.4",
"jwks-rsa": "^3.0.1",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-jwt": "^4.0.4"
}
}