-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "nitro-intent-backend-api",
"description": "Nitro intent API by Router Protocol",
"version": "0.0.1",
"author": "Router Protocol",
"private": true,
"scripts": {
"start": "npm run build && npm run serve",
"serve": "node dist/bin/www.js",
"build": "npm run build-ts && npm run copy-static-assets",
"dev": "cross-env ENV=dev ts-node-dev --respawn --pretty --transpile-only src/bin/www.ts",
"dev:debug": "cross-env ENV=dev ts-node-dev --inspect=4322 --respawn --pretty --transpile-only src/bin/www.ts",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"build-ts": "tsc",
"copy-static-assets": "node copyStaticAssets.js",
"format": "prettier --write \"./**/*.{ts,js,json}\" && npm run lint:fix",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts src/ --fix",
"prepare": "husky install"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node"
},
"dependencies": {
"@types/bluebird": "^3.5.25",
"@types/body-parser": "^1.16.4",
"@types/compression": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/express-validator": "^3.0.0",
"@types/lodash": "^4.14.68",
"@types/method-override": "0.0.29",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.3.5",
"@types/request": "0.0.45",
"@types/swagger-jsdoc": "^6.0.4",
"@types/uuid": "^3.4.0",
"@uniswap/sdk-core": "^4.0.9",
"@uniswap/v3-sdk": "^3.10.0",
"axios": "^1.5.0",
"bignumber.js": "^9.1.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"compression": "^1.7.0",
"concurrently": "^3.5.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.3",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"express": "^4.16.0",
"express-correlation-id": "^2.0.1",
"express-validator": "^5.3.0",
"helmet": "^3.21.2",
"husky": "^7.0.4",
"jsbi": "3.2.5",
"lodash": "^4.17.4",
"method-override": "^2.3.9",
"moment": "^2.22.2",
"mongoose": "^5.2.3",
"mysql2": "^1.3.6",
"node-fetch": "^2.7.0",
"redis": "^4.6.12",
"reflect-metadata": "^0.1.12",
"request": "^2.88.2",
"superagent": "^3.5.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^8.5.4",
"typescript": "^5.1.1",
"uuid": "^3.1.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/chai-http": "^4.2.0",
"@types/debug": "0.0.29",
"@types/dotenv": "^4.0.0",
"@types/mocha": "^5.2.7",
"@types/morgan": "^1.7.32",
"@types/node": "^20.12.12",
"@types/nodemailer": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^9.0.0",
"lint-staged": "10.5.4",
"mocha": "^6.2.2",
"prettier": "^2.5.1",
"prettier-eslint": "^16.1.2",
"swagger-ts-generator": "^1.1.20"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ignore-path .gitignore --fix"
]
}
}