forked from Kharon-labs/kharon-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"type": "commonjs",
"name": "kharon_server",
"version": "1.0.0",
"description": "Server codebase for Kharon protocol",
"main": "server.js",
"scripts": {
"test": "jest --detectOpenHandles",
"start": "node src/server.js",
"watch": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kharon-labs/kharon-server.git"
},
"keywords": [
"Kharon",
"Blockchain",
"Ethereum",
"server",
"Starknet"
],
"author": "Chinonso, Evans, Samuel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kharon-labs/kharon-server/issues"
},
"homepage": "https://github.com/Kharon-labs/kharon-server#readme",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@types/express": "^5.0.0",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.18.1",
"handlebars": "^4.7.8",
"helmet": "^7.1.0",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.0",
"mongoose": "^8.5.4",
"nodemailer": "^6.9.14",
"otp-generator": "^4.0.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"password-validator": "^5.3.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}