-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) 路 2.55 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) 路 2.55 KB
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
{
"name": "@ai-toolkit/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.12",
"engines": {
"node": ">=22.x"
},
"scripts": {
"start": "nx run @uniswap/ai-toolkit-nx-claude:nx-claude:exec",
"build": "nx run-many --target=build --all",
"lint": "nx run-many --target=lint --all",
"format": "nx format:write",
"format:check": "nx format:check",
"prepare": "node scripts/prepare.cjs",
"lefthook": "bunx lefthook run pre-commit"
},
"private": true,
"dependencies": {
"@notionhq/client": "^2.3.0",
"@tryfabric/martian": "^1.2.4",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@nx/devkit": "22.0.2",
"@nx/esbuild": "22.0.2",
"@nx/eslint": "22.0.2",
"@nx/eslint-plugin": "22.0.2",
"@nx/jest": "22.0.2",
"@nx/js": "22.0.2",
"@nx/node": "22.0.2",
"@nx/plugin": "22.0.2",
"@nx/webpack": "22.6.4",
"@swc-node/register": "~1.9.2",
"@swc/cli": "~0.6.0",
"@swc/core": "^1.15.24",
"@swc/helpers": "~0.5.21",
"@swc/jest": "~0.2.39",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^24.0.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"enquirer": "^2.4.1",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.3.0",
"jest-environment-node": "^30.3.0",
"jest-util": "^30.3.0",
"jsonc-eslint-parser": "^2.4.2",
"lefthook": "^1.13.6",
"markdownlint-cli2": "^0.20.0",
"nx": "22.0.2",
"prettier": "^2.8.8",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"ts-node": "10.9.1",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.58.0",
"verdaccio": "^6.4.0",
"webpack": "5.105.1",
"webpack-node-externals": "^3.0.0"
},
"workspaces": [
"packages/*",
"packages/plugins/*",
"apps/*"
],
"overrides": {
"validator": "^13.15.20"
},
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}
}