-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "linea-attestation-registry",
"version": "0.0.1",
"description": "Core smart contracts to read and write attestations on Linea",
"keywords": [
"linea-attestation-registry",
"blockchain",
"attestation",
"ethereum",
"foundry",
"smart-contracts",
"solidity"
],
"repository": "github.com/Consensys/linea-attestation-registry",
"license": "MIT",
"author": "Consensys",
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"prepare": "husky install",
"prettier:check": "prettier --check \"**/*.{json,md,svg,yml,sol,js,jsx,ts,tsx,graphql}\"",
"prettier:write": "prettier --write \"**/*.{json,md,svg,yml,sol,js,jsx,ts,tsx,graphql}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.3.1",
"typescript": "5.2.2"
},
"engines": {
"pnpm": ">=9.10.0"
},
"pnpm": {
"overrides": {
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
"body-parser@<1.20.3": ">=1.20.3",
"cookie@<0.7.0": ">=0.7.0",
"ejs@<3.1.10": ">=3.1.10",
"elliptic@>=5.2.1 <=6.5.6": ">=6.5.7",
"elliptic@>=4.0.0 <=6.5.6": ">=6.5.7",
"elliptic@>=2.0.0 <=6.5.6": ">=6.5.7",
"elliptic@<6.5.6": ">=6.5.6",
"path-to-regexp@>=2.0.0 <3.3.0": ">=3.3.0",
"path-to-regexp@<0.1.10": ">=0.1.10",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"webpack-dev-middleware@<=5.3.3": ">=5.3.4",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"ws@>=7.0.0 <7.5.10": ">=7.5.10"
}
}
}