-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
69
{
"name": "express-typescript-template",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Express.js development in TypeScript.",
"engines": {
"node": ">= 20.9 < 21"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "~29.5",
"@types/node": "~20",
"@typescript-eslint/eslint-plugin": "~6.15",
"@typescript-eslint/parser": "~6.15",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~27.6",
"jest": "~29.7",
"prettier": "~3.1",
"rimraf": "~5.0",
"ts-api-utils": "~1.0",
"ts-jest": "~29.1",
"typescript": "~5.3"
},
"scripts": {
"start": "node build/src/main.js",
"dev": "NODE_ENV=development nodemon src/main.ts",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "JasonTan",
"license": "Apache-2.0",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@types/lodash": "^4.17.0",
"@types/socket.io": "^3.0.2",
"@uniswap/v3-periphery": "1.0.1",
"@uniswap/v3-sdk": "^3.9.0",
"alchemy-sdk": "^3.2.1",
"bignumber.js": "^9.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"ethers": "5.7.2",
"express": "^4.19.2",
"hardhat": "^2.22.2",
"helmet": "^7.1.0",
"lodash": "^4.17.21",
"mongodb": "^6.5.0",
"mongoose": "^8.3.1",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2",
"tslib": "~2.6",
"util": "^0.12.5",
"winston": "^3.13.0"
},
"volta": {
"node": "20.10.0"
}
}