-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
110 lines (110 loc) · 3.66 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "likecoin-api-public",
"version": "1.0.0",
"engines": {
"node": ">=18"
},
"description": "",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist && ln -s ../config ./dist/config",
"dev": "IS_TESTNET=true nodemon src/index.ts",
"dev:stub": "IS_TESTNET=true node ./test/stub/runner dev",
"dev:docker:api": "docker-compose -f docker-compose-dev.yml up -d",
"dev:docker:build": "docker-compose build",
"dev:docker:down": "docker-compose down",
"dev:docker:test": "npm run dev:docker:test:build && docker-compose -f docker-compose-test.yml up -d",
"dev:docker:test:build": "docker-compose -f docker-compose-test.yml build",
"dev:docker:test:stop": "docker-compose -f docker-compose-test.yml stop",
"build": "npm run clean && NODE_ENV=production tsc && cp ./src/locales/*.json ./dist/src/locales/",
"lint": "eslint --ext .ts,.js src test --fix",
"start": "NODE_ENV=production node dist/src/api.js",
"start:web": "NODE_ENV=production node dist/src/web.js",
"test": "npm run test:stub",
"test:stub": "node ./test/stub/runner test:api",
"test:data": "cp ./test/data/* ./dist/test/data",
"test:api": "IS_TESTNET=true CI=true TS_NODE_FILES=true ava --timeout=1m -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likecoin/likecoin-api-public.git"
},
"author": "William Chong",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/likecoin/likecoin-api-public/issues"
},
"homepage": "https://github.com/likecoin/likecoin-api-public#readme",
"dependencies": {
"@bundlr-network/client": "^0.11.2",
"@cosmjs/stargate": "^0.30.1",
"@google-cloud/pubsub": "^4.9.0",
"@google-cloud/retail": "^3.6.0",
"@likecoin/edm": "^8.2.0-beta.1",
"@likecoin/iscn-js": "^0.6.9",
"@likecoin/secretd-js": "^0.4.4",
"@sendgrid/mail": "^6.5.5",
"agentkeepalive": "^4.1.3",
"airtable": "^0.12.2",
"arbundles": "^0.9.9",
"arweave": "^1.10.17",
"aws-sdk": "^2.384.0",
"axios": "^1.7.4",
"base64url": "^3.0.1",
"bech32": "^1.1.3",
"bignumber.js": "^8.0.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cosmjs-types": "^0.8.0",
"create-hash": "^1.2.0",
"crisp-api": "^9.0.0",
"disposable-email-domains": "^1.0.56",
"eth-sig-util": "^2.5.4",
"ethers": "^6.13.4",
"express": "^4.21.0",
"express-http-proxy": "^1.6.0",
"express-jwt": "^6.0.0",
"express-rate-limit": "^3.3.2",
"fast-json-stable-stringify": "^2.1.0",
"file-type": "^12.4.2",
"firebase-admin": "^13.0.1",
"i18n": "^0.8.3",
"ipfs-http-client": "^56.0.3",
"ipfs-only-hash": "^4.0.0",
"js-sha256": "^0.9.0",
"jsonwebtoken": "^9.0.0",
"lru-cache": "^7.14.0",
"md5-hex": "^2.0.0",
"multer": "^1.4.1",
"secp256k1": "^4.0.3",
"sharp": "^0.32.6",
"stripe": "^16.12.0",
"url-parse": "^1.4.4",
"uuid": "^3.3.2",
"web3-utils": "^1.2.11",
"xml": "^1.0.1"
},
"devDependencies": {
"@types/sharp": "^0.31.0",
"@types/url-parse": "^1.4.8",
"@ava/typescript": "^3.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"ava": "^5.0.1",
"axiosist": "^0.3.0",
"c8": "^7.12.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.14.0",
"form-data": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"nodemon": "^2.0.22",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}