-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "be",
"version": "1.0.0",
"description": "WineBit backend Koa.js server",
"main": "dist/bin/www.js",
"repository": {
"url": "https://gitlab.com/winebit/be"
},
"scripts": {
"test-coverage": "jest --coverage",
"test": "jest --runInBand --detectOpenHandles",
"build": "tsc",
"clean": "rm -rf ./dist/",
"compile": "tsc && DEBUG=* node ./dist/bin/www.js",
"dev": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run compile\"",
"gcp-build": "tsc -p .",
"start": "echo \"This is for PRODUCTION ONLY, use 'npm run dev' for development server'\" && ENV=PROD node ./dist/bin/www.js",
"lint": "pretty-quick"
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@google-cloud/storage": "^5.8.5",
"@koa/cors": "^3.1.0",
"@koa/multer": "^3.0.0",
"@labrysio/dyon-contracts": "^1.0.1",
"@typegoose/typegoose": "9",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"ethers": "^5.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-joi-router": "^8.0.0",
"koa-passport": "^4.1.4",
"koa-router": "^10.0.0",
"lodash": "^4.17.21",
"mongodb": "^4.1.4",
"mongoose": "6.0.11",
"multer": "^1.4.2",
"node-cron": "^3.0.0",
"passport-jwt": "^4.0.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-joi-router": "^8.0.0",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "^7.4.2",
"@types/koa__cors": "^3.0.2",
"@types/koa__multer": "^2.0.2",
"@types/lodash": "^4.14.170",
"@types/node-cron": "^2.0.3",
"@types/passport-jwt": "^3.0.5",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-labrys": "0.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jest": "^26.6.3",
"jest-serial-runner": "^1.1.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"supertest": "^6.1.3",
"ts-jest": "^26.5.6",
"typescript": "4.4"
}
}