-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "holograph",
"version": "0.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "Holograph",
"scripts": {
"build": "turbo run build",
"dev": "dotenv turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"preinstall": "npx only-allow pnpm",
"install:foundry": "curl -L https://foundry.paradigm.xyz | bash && pnpm update:foundry",
"lint:specs:check": "npx markdownlint-cli2 \"./specs/**/*.md\"",
"lint:specs:fix": "npx markdownlint-cli2-fix \"./specs/**/*.md\"",
"lint:specs:toc": "npx doctoc '--title=**Table of Contents**' ./specs",
"prepare": "husky install",
"ready": "pnpm lint && pnpm test",
"update:foundry": "foundryup -C $(cat .foundryrc)",
"typedoc": "typedoc --logLevel Verbose",
"test:sdk": "pnpm --prefix ./packages/sdk test"
},
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.1.3",
"@turbo/gen": "^1.9.7",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^8.2.3",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dotenv": "^10.0.0",
"eslint": "^8.45.0",
"eslint-config-custom": "workspace:*",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unicorn": "^42.0.0",
"ethers": "^6.6.4",
"husky": "^6.0.0",
"lerna": "^7.1.4",
"lint-staged": "11.0.0",
"markdownlint": "^0.24.0",
"markdownlint-cli2": "0.4.0",
"mkdirp": "^1.0.4",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"patch-package": "^6.5.1",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"rimraf": "^5.0.1",
"ts-mocha": "^10.0.0",
"turbo": "^1.10.12",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"dependencies": {
"typedoc": "^0.25.3"
}
}