-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "crypto-profile-dot-link",
"version": "1.0.0",
"description": "Node.js implementation of Crypto-Profile-Dot-Link",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.2",
"@babel/preset-typescript": "^7.21.5",
"@types/connect-timeout": "^0.0.37",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multicoin-address-validator": "^0.5.0",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^8.0.1",
"eslint": "^8.11.0",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2",
"nodemon": "^2.0.15",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"connect-timeout": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint-plugin-jest": "^26.1.2",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.1",
"morgan": "^1.10.0",
"multicoin-address-validator": "^0.5.12",
"swagger-ui-express": "^4.6.3",
"web3": "^1.10.0",
"winston": "^3.9.0",
"winston-transport-sentry-node": "^2.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tnbCrow/Crypto-Profile-Dot-Link.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/tnbCrow/Crypto-Profile-Dot-Link/issues"
},
"homepage": "https://github.com/tnbCrow/Crypto-Profile-Dot-Link#readme"
}