This repository was archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ASUDR",
"version": "1.0.0",
"type": "module",
"description": "Backend for ASUDR",
"main": "app.ts",
"scripts": {
"start": "npm run build && npm run up",
"up": "node --trace-deprecation --experimental-specifier-resolution=node dist/app.js",
"build": "tsc && echo 'End of tsc'",
"gendoc": "npx typedoc --out docs --entryPointStrategy expand ./src",
"lint": "eslint --ext .ts src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Sardorkhuja",
"license": "ISC",
"dependencies": {
"@koa/router": "^10.1.0",
"bcrypt": "^5.0.1",
"crypto-random-string": "^2.0.0",
"dotenv": "^10.0.0",
"joi": "^17.4.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-csrf": "^3.0.8",
"koa-helmet": "^6.1.0",
"koa-passport": "^4.1.4",
"koa-redis": "^4.0.1",
"koa-session": "^6.2.0",
"koa-swagger-decorator": "^1.7.7",
"koa2-swagger-ui": "^5.2.0",
"nodemon": "^2.0.12",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"swagger-generator-koa": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/csurf": "^1.11.2",
"@types/hpp": "^0.2.2",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.7",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-csrf": "^3.0.2",
"@types/koa-passport": "^4.0.2",
"@types/koa-redis": "^4.0.1",
"@types/koa-session": "^5.10.4",
"@types/node": "^16.9.3",
"@types/passport-local": "^1.0.34",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"typedoc": "^0.22.4",
"typescript-rest": "^3.0.4",
"typescript-rest-swagger": "^1.1.7"
}
}