-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.32 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
{
"name": "lambda-handlers-image",
"version": "0.10.11",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write \"{,!(node_modules|dist|build|coverage|matters-server)/**/}*.{js,mjs,jsx,ts,tsx,json}\"",
"format:check": "npm run format -- --list-different",
"lint": "eslint lib/ handlers/ --ext .js,.ts",
"build": "tsc -p .",
"test": "MATTERS_ENV=test jest --forceExit",
"prepare": "husky"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/aws-lambda": "^8.10.109",
"@types/d3-array": "^3.2.1",
"@types/d3-dsv": "^3.0.7",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.5",
"@types/lodash.uniqby": "^4.7.7",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"bcrypt": "^5.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"prettier": "^2.8.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@aws-sdk/client-sqs": "^3.266.0",
"@google-analytics/data": "^4.0.1",
"@google-cloud/bigquery": "^7.3.0",
"@mapbox/node-pre-gyp": "^1.0.11",
"@matters/apollo-response-cache": "^1.4.0-rc.0",
"@matters/ipns-site-generator": "^0.1.7",
"@matters/slugify": "^0.7.3",
"@openzeppelin/merkle-tree": "^1.0.6",
"@sendgrid/helpers": "^7.7.0",
"@sendgrid/mail": "^7.7.0",
"@slack/web-api": "^6.8.1",
"axios": "^1.3.2",
"cheerio": "^1.0.0-rc.12",
"d3-array": "^3.2.4",
"d3-dsv": "^3.0.1",
"debug": "^4.3.4",
"gw3-sdk": "^0.3.0",
"ioredis": "^5.2.4",
"ipfs-http-client": "^59.0.0",
"js-base64": "^3.7.4",
"knex": "^2.3.0",
"lodash": "^4.17.21",
"lodash.shuffle": "^4.2.0",
"lodash.uniqby": "^4.7.0",
"meilisearch": "^0.30.0",
"multiformats": "^10.0.3",
"objection": "^3.0.1",
"opencc": "^1.1.3",
"pg": "^8.8.0",
"postgres": "^3.3.2",
"stripe": "^11.10.0",
"uuid": "^9.0.0",
"viem": "^1.21.4"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}