-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 934 Bytes
/
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
{
"name": "BitGo-Wallet-Research-Development",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Sam-Devs/BitGo-Wallet-Research-Development.git",
"author": "Sam Ayorinde <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node --unhandled-rejections=strict ./dist/app.js",
"dev": "nodemon --config nodemon.json src/app.ts",
"deploy": "git add . && git commit -m Heroku && git push origin express-app && git push heroku express-app:master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"nodemon": "^2.0.16"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/cors": "^2.8.12",
"@types/node": "^17.0.34",
"bitgo": "^14.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}