-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json --format stylish",
"build": "tsc",
"serve": "ts-node-dev src/server.ts",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NIkitaShykin/OceanBarBackend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NIkitaShykin/OceanBarBackend/issues"
},
"homepage": "https://github.com/NIkitaShykin/OceanBarBackend#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.0.3",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-cookie": "^1.0.0",
"@types/koa-router": "^7.4.4",
"@types/node": "^16.10.9",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.1",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"aws-sdk": "^2.1036.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.3",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-cookie": "^1.0.0",
"koa-oas3": "^2.3.2",
"koa-router": "^10.1.1",
"koa-validate": "^1.0.7",
"nodemailer": "^6.7.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.38",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
}
}