-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
{
"name": "backend_2",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx ts-node-dev src/app.ts",
"migration:run": "npx typeorm-ts-node-esm migration:run -d src/database/MySqlDataSource.ts",
"migration:revert": "npx typeorm-ts-node-esm migration:revert -d src/database/MySqlDataSource.ts",
"migration:create": "npx typeorm-ts-node-esm migration:create",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mysten/sui.js": "^0.20.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/helmet": "^4.0.0",
"@types/ioredis": "^5.0.0",
"@types/uuid": "^9.0.0",
"axios": "^1.6.0",
"bignumber.js": "^9.1.2",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eth-crypto": "^2.6.0",
"eth-sig-util": "^3.0.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"helmet": "^7.0.0",
"ioredis": "^5.3.2",
"joi": "^17.7.0",
"md5": "^2.3.0",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typeorm": "^0.3.11",
"typeorm-typedi-extensions": "^0.4.1",
"uuid": "^9.0.0",
"web3": "^4.1.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/md5": "^2.3.5",
"@types/morgan": "^1.9.6",
"@types/node": "^18.11.14",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"morgan": "^1.10.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}