-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "chorus-one",
"private": true,
"scripts": {
"lint": "eslint packages/**",
"cleanup": "prettier --write packages/** && eslint --no-error-on-unmatched-pattern --fix packages/**",
"build": "turbo build --cache-dir='./.turbo/cache'",
"test": "mocha 'packages/**/test/*.spec.ts' --ignore 'packages/ethereum/**/*.spec.ts'",
"test:ethereum": "cd packages/ethereum && npm test",
"test:polygon": "cd packages/polygon && npm run test:integration"
},
"packageManager": "npm@10.2.4",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@stylistic/eslint-plugin-ts": "^2.1.0",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^8.0.2",
"@types/chai-spies": "^1.0.6",
"@types/mocha": "10.0.10",
"@types/node": "^20.9.0",
"chai": "^4.0.0",
"chai-as-promised": "^8.0.2",
"chai-spies": "^1.1.0",
"globals": "^15.4.0",
"mocha": "11.7.5",
"prettier": "^3.3.2",
"tsx": "^4.16.2",
"turbo": "^2.0.6",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.0",
"typescript-eslint": "^7.13.0"
},
"overrides": {
"chalk": "4.1.2",
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0",
"ansi-styles": "4.3.0",
"supports-color": "8.1.1",
"log-symbols": "4.1.0",
"diff": "8.0.3"
},
"workspaces": [
"packages/*"
]
}