-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "eth-unwrapped",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc:init": "tsc --init",
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node prod/index.js",
"test": "jest --detectOpenHandles",
"husky:init": "husky install && husky add .husky/pre-commit \"npm test\"",
"husky:sync": "git add .husky/pre-commit"
},
"keywords": [],
"author": "Metafy",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/javascript-time-ago": "^2.0.3",
"@types/jest": "^29.5.1",
"@types/supertest": "^2.0.12",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.2",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethereum-block-by-date": "^1.4.6",
"ethers": "^5.7.2",
"express": "^4.18.2",
"javascript-time-ago": "^2.5.9",
"joi": "^17.7.0",
"mongoose": "^6.8.2",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4"
}
}