-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "crypto_wallet",
"version": "1.0.0",
"description": "A backend wallet solution for emerging blockchains.",
"main": "app.js",
"scripts": {
"start": "nodemon -e ts --exec \"npm run compile\"",
"compile": "tsc && node ./build/app.js",
"build": "tsc",
"test": "lab --sourcemaps --leaks --transform node_modules/lab-transform-typescript -v",
"docs": "npx typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masxxiii/Crypto_Wallet.git"
},
"author": "Masood Zafar",
"license": "MIT",
"bugs": {
"url": "https://github.com/masxxiii/Crypto_Wallet/issues"
},
"homepage": "https://github.com/masxxiii/Crypto_Wallet#readme",
"dependencies": {
"@hapi/boom": "^9.1.4",
"@hapi/code": "^8.0.7",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.4",
"@hapi/lab": "^24.5.1",
"@hapi/nes": "^12.0.4",
"@hapi/vision": "^6.1.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"file-type": "^16.5.3",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-cors": "^1.0.3",
"hapi-pino": "^9.1.2",
"hapi-rate-limitor": "^3.1.2",
"hapi-swagger": "^14.2.5",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lab-transform-typescript": "^3.0.1",
"pg": "^8.7.3",
"pino-pretty": "^7.5.1",
"qs": "^6.10.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-cli": "^6.4.1",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@hapi/eslint-config-hapi": "^13.0.2",
"@hapi/eslint-plugin-hapi": "^4.3.6",
"@types/bcrypt": "^5.0.0",
"@types/hapi": "^18.0.7",
"@types/hapi__hapi": "^20.0.10",
"@types/hapi__inert": "^5.2.3",
"@types/hapi__nes": "^11.0.5",
"@types/hapi__vision": "^5.5.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.14",
"@types/nodemailer": "^6.4.4",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-security": "^1.4.0",
"lab-transform-typescript": "^3.0.1",
"nodemon": "^2.0.15",
"typedoc": "^0.22.11",
"typescript": "4.6.3"
}
}