-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
{
"name": "web3-api",
"version": "0.0.1",
"scripts": {
"build": "./node_modules/.bin/ts-node build.ts",
"start": "node -r module-alias/register ./dist --env=production",
"start:dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "./node_modules/.bin/ts-node -r tsconfig-paths/register ./src"
},
"_moduleAliases": {
"@shared": "dist/shared",
"@server": "dist/server",
"@services": "dist/services",
"@routes": "dist/routes",
"@models": "dist/models",
"@middleware": "dist/middleware",
"@utils": "dist/utils"
},
"dependencies": {
"@walletconnect/utils": "^1.7.5",
"assert": "^2.0.0",
"axios": "^0.26.1",
"command-line-args": "^5.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.1",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"jet-logger": "^1.1.5",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"node-fetch": "^3.2.3"
},
"devDependencies": {
"-": "^0.0.1",
"@types/axios": "^0.14.0",
"@types/command-line-args": "^5.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/find": "^0.2.1",
"@types/fs-extra": "^9.0.13",
"@types/jsonfile": "^6.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"find": "^0.3.0",
"fs-extra": "^10.0.1",
"nodemon": "^2.0.15",
"npm": "^8.5.5",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
}
}