-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "linea-token-list",
"version": "2.0.0",
"repository": "git@github.com:Consensys/linea-token-list.git",
"license": "(MIT OR Apache-2.0)",
"author": "Consensys Software Inc.",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"prettier": "prettier --check \"**/*.{json,md,yml,js,ts}\"",
"prettier:fix": "npm run prettier -- --write",
"test": "jest",
"typecheck": "tsc --noEmit",
"verify": "tsc && node -r tsconfig-paths/register scripts/dist/scripts/verifyMainnetShortlist.js && npm run prettier:fix"
},
"dependencies": {
"deep-diff": "^1.0.2",
"dotenv": "^16.6.1",
"joi": "^17.13.3",
"module-alias": "^2.2.3",
"viem": "^2.44.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/deep-diff": "^1.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.33",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": "22.22.0",
"npm": ">=10.0.0"
},
"_moduleAliases": {
"src": "scripts/dist/src"
}
}