-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.61 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
{
"name": "serverless-api-partners",
"version": "0.1.0",
"description": "Serverless api for changelly",
"main": "index.js",
"files": [
"dist/**/*"
],
"scripts": {
"start": "babel src --out-dir dist",
"create": "npm run start && claudia create --profile claudia --region us-east-1 --api-module dist/index",
"update": "npm run start && claudia update --profile claudia --runtime nodejs12.x",
"updateDev": "npm run start && claudia update --profile claudia --version testing",
"test": "jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyEtherWallet/serverless-api-partners.git"
},
"author": "#teamMEW",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyEtherWallet/serverless-api-partners/issues"
},
"homepage": "https://github.com/MyEtherWallet/serverless-api-partners#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"claudia": "^5.2.0",
"jest": "^23.6.0"
},
"dependencies": {
"node-fetch": "^2.6.1",
"@babel/runtime": "^7.10.2",
"@bity/api": "^3.7.1",
"adm-zip": "^0.4.14",
"aws-sdk": "^2.362.0",
"base-path-converter": "^1.0.2",
"claudia-api-builder": "^4.1.1",
"content-hash": "^2.5.2",
"dotenv": "^6.1.0",
"openid-client": "^3.12.2",
"recursive-fs": "^2.1.0",
"request": "^2.88.0",
"simple-encryptor": "^2.0.0",
"uuid": "^8.0.0"
},
"optionalDependencies": {
"web3": "^1.2.6"
}
}