-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "node scripts/post_install.js",
"build": "tsc",
"watch": "npm run build && nodemon",
"start": "npm run build && npx node -r ts-node/register ./src/index.ts --unhandled-rejections=strict",
"test": "mocha -r ts-node/register --watch-extensions ts --watch --watch-files src tests/**/*.test.ts",
"docker:build": "npm run build && docker-compose build",
"docker:run": "docker-compose up & docker-compose down",
"docker:push": "docker-compose push"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ethers": "^5.0.30",
"express": "^4.17.1",
"mongoose": "^5.11.12",
"ts-command-line-args": "^1.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.0",
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.22",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"fsevents": "^2.3.1"
}
}