-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "backend-test-momint",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run lint && npm run build:ts",
"clean": "node scripts/rm-dist",
"lint": "tslint -c tslint.json -p tsconfig.json",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"start": "node -r dotenv/config dist/index.js",
"start:dev": "nodemon -r dotenv/config dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"helmet": "^6.0.0",
"joi": "^17.6.2",
"luxon": "^3.0.4",
"mongodb": "^4.10.0",
"morgan": "^1.10.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/fs-extra": "^9.0.13",
"@types/luxon": "^3.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.23",
"nodemon": "^2.0.20",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}