-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "deflexbridge",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "tsc && node dist/server.js",
"dev": "nodemon server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@dfinity/agent": "^2.1.2",
"@dfinity/auth-client": "^2.1.2",
"@dfinity/candid": "^2.1.2",
"@dfinity/identity": "^2.1.2",
"@solana/web3.js": "^1.95.3",
"axios": "^1.7.7",
"azle": "^0.24.1",
"body-parser": "^1.19.0",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"core-js": "^3.37.1",
"cors": "^2.8.5",
"cross-fetch": "^4.0.0",
"dotenv": "^7.0.0",
"ethers": "^5.7.2",
"express": "^4.19.2",
"helmet": "^3.16.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"regenerator-runtime": "^0.14.1",
"sharp": "^0.31.3",
"ts-node": "^10.9.2",
"uuid": "^9.0.0",
"winston": "^3.15.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.11",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"chai": "^5.1.1",
"jest": "^29.7.0",
"mocha": "^10.7.3",
"nodemon": "^3.1.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=10.0.0"
}
}