-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 2.08 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
{
"name": "@blockful/external-resolver",
"version": "1.0.0",
"packageManager": "npm@10.2.3",
"workspaces": [
"packages/*"
],
"scripts": {
"ccip-server": "npm run -w @blockful/ccip-server",
"client": "npm run -w @blockful/client",
"gateway": "npm run -w @blockful/gateway",
"contracts": "npm run -w @blockful/contracts",
"l2-indexer": "npm run -w @blockful/l2-indexer",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"build": "turbo build --force",
"prepare": "husky",
"lint": "turbo run lint",
"commit": "git-cz",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --quiet --fix"
],
"*.{json,js,ts}": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rocketseat/eslint-config": "^2.2.2",
"@thirdweb-dev/contracts": "^3.15.0",
"@types/eslint": "^8",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.1.0",
"turbo": "^1.13.3"
},
"description": "This project aims to scale the Ethereum Name Service (ENS) by reducing costs for users and increasing its usage. The strategy involves combining existing patterns such as [ERC-3668](https://eips.ethereum.org/EIPS/eip-3668), [EIP-5559](https://eips.ethereum.org/EIPS/eip-5559), [ENSIP-10](https://docs.ens.domains/ensip/10) and [ENSIP-16](https://docs.ens.domains/ensip/16), along with proof of concepts to develop a comprehensive reference codebase for the industry.",
"main": "commitlint.config.js",
"directories": {
"doc": "docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}