-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.74 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
{
"name": "@satoshipay/auto-market-maker",
"version": "0.0.0",
"license": "MIT",
"private": true,
"author": "SatoshiPay Ltd",
"scripts": {
"build": "webpack -c ./webpack.config.js --entry ./src/market-maker.ts --mode production",
"build:dev": "webpack -c ./webpack.config.js --entry ./src/market-maker.ts --mode development",
"upload": "node upload-contract.js contracts/dist/main.js src/market-maker.json $TURRET_LIST $TESTNET $PAYMENT_KEY",
"upload-dev": "TURRET_LIST=http://localhost:4000/dev TESTNET=true PAYMENT_KEY=SA4LWKSJ6L6GPPBHXWYU4X2SGSBTXPTFX77HN356AW4P3BFFNZYZJREE npm run upload",
"upload-prod": "TURRET_LIST=http://localhost:4000/dev TESTNET=false npm run upload",
"deploy-dev": "npm run build && npm run upload-dev",
"deploy-prod": "npm run build && npm run upload-prod",
"test-server": "ts-node-dev -r dotenv/config --respawn --watch 'contracts/dist/*,src/**,test/server/**' test/server/index.ts"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/big.js": "^6.0.2",
"@types/http-errors": "^1.8.0",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.11.7",
"@types/koa-router": "^7.4.1",
"@types/node": "^14.14.22",
"clean-webpack-plugin": "^3.0.0",
"dotenv": "^8.2.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@godaddy/terminus": "^4.6.0",
"axios": "^0.21.1",
"big.js": "^6.0.3",
"form-data": "^3.0.0",
"http-errors": "^1.8.0",
"kcors": "^2.2.2",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-router": "^10.0.0",
"stellar-sdk": "^7.0.0"
}
}