-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 KB
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
{
"name": "auction-api",
"version": "1.0.0",
"description": "REV Auction API",
"main": "dist/index.js",
"repository": "git@github.com:Reinis-FRP/auction-api.git",
"author": "REV team",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"start": "yarn build && node dist/src/main",
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint --fix",
"e2e": "ts-node node_modules/tape/bin/tape src/**/*.e2e.ts"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.6.5",
"@types/supertest": "^2.0.13",
"@types/tape": "^5.6.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.7.2",
"axios": "^1.5.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"tape": "^5.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"superstruct": "^1.0.3",
"ws": "^8.14.2"
}
}