-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "xmtp-qa-testing",
"version": "0.0.3",
"private": true,
"type": "module",
"scripts": {
"bot": "tsx bots/test/index.ts",
"build": "tsc",
"clean": "rimraf node_modules && yarn clean:dbs",
"clean:dbs": "rimraf *.db3* ||:",
"datadog": "tsx scripts/send-to-datadog.ts",
"format": "prettier -w .",
"format:check": "prettier -c .",
"gen:inboxes": "tsx scripts/generateinboxes.ts",
"gen:keys": "tsx scripts/generateKeys.ts",
"gm": "tsx bots/gm/index.ts",
"lint": "eslint .",
"monitor:dev": "httpstat https://grpc.dev.xmtp.network:443",
"monitor:live": "bash scripts/monitor.sh",
"monitor:network": "bash scripts/network.sh",
"railway": "bash scripts/railway.sh",
"record": "npx playwright codegen 'https://xmtp.chat/'",
"redeploy": "tsx scripts/redeploy.ts",
"start": "vitest --ui --standalone --watch ",
"test": "vitest",
"typecheck": "tsc"
},
"dependencies": {
"@hyperbrowser/sdk": "^0.29.0",
"@xmtp/node-sdk": "1.0.0-rc1",
"axios": "^1.8.2",
"dotenv": "^16.4.7",
"openai": "latest",
"tsx": "^4.19.2",
"uint8arrays": "^5.1.0",
"viem": "^2.22.17",
"winston": "^3.17.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@playwright/test": "^1.50.1",
"@railway/cli": "^3.22.2",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "3.0.6",
"@vitest/ui": "^3.0.6",
"datadog-metrics": "^0.12.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"lodash": "^4.17.21",
"playwright-chromium": "^1.50.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"puppeteer-core": "^24.2.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}