-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
86 lines (86 loc) · 2.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "near-contract-helper",
"version": "0.0.1",
"description": "Micro-service used by NEARStudio to deploy smart contracts.",
"main": "app.js",
"scripts": {
"start": "node scripts/run-development-dynamo.js & env $(sed 's/ # .*//' .env) supervisor app | bunyan",
"start:indexer": "env $(sed 's/ # .*//' .env) supervisor indexer | bunyan",
"docker:start": "node app.js",
"docker:start:indexer": "node indexer.js",
"test": "yarn lint && mocha",
"lint": "eslint .",
"fix": "eslint . --fix",
"start-no-env": "supervisor app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearprotocol/near-contract-helper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nearprotocol/near-contract-helper/issues"
},
"homepage": "https://github.com/nearprotocol/near-contract-helper#readme",
"dependencies": {
"@google-cloud/recaptcha-enterprise": "^2.5.0",
"@koa/cors": "^3.0.0",
"@near-wallet/feature-flags": "^0.0.4",
"@sentry/node": "^6.5.1",
"@sentry/tracing": "^6.2.3",
"bluebird": "^3.7.2",
"bn.js": "5.1.0",
"bs58": "^4.0.1",
"bunyan": "^1.8.15",
"dataloader": "^2.0.0",
"debug": "^4.3.1",
"dynamodb": "1.3.0",
"escape-html": "^1.0.3",
"hexer": "^1.5.0",
"joi": "^17.6.0",
"js-sha256": "^0.9.0",
"koa": "^2.13.1",
"koa-bunyan-logger": "^2.1.0",
"koa-json-body": "^5.3.0",
"koa-ratelimit": "^5.0.0",
"koa-router": "^10.0.0",
"near-api-js": "^0.39.0",
"near-seed-phrase": "^0.2.0",
"node-cache": "^5.1.2",
"nodemailer": "^6.6.1",
"pg": "^8.6.0",
"secure-random-password": "^0.2.1",
"superagent": "^6.1.0",
"tweetnacl": "^1.0.3",
"twilio": "^3.63.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"aws-sdk": "^2.1075.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"commander": "^9.2.0",
"dotenv": "^8.2.0",
"dynamodb-local": "^0.0.31",
"eslint": "^7.27.0",
"inquirer": "^8.2.2",
"mocha": "^9.0.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"supertest": "^6.1.3",
"supervisor": "^0.12.0"
},
"resolutions": {
"**/node-fetch": "2.6.7"
}
}