-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "linea-token-list",
"version": "2.0.0",
"repository": "[email protected]:ConsenSys/linea-token-list.git",
"author": "ConsenSys",
"license": "MIT",
"homepage": "https://ConsenSys.github.io/linea-token-list/",
"scripts": {
"prettify": "prettier --config .prettierrc --write 'json/linea-goerli-token-shortlist.json'",
"precommit": "npm run prettify",
"husky-run": "node husky.js",
"prepare": "husky install",
"start": "tsc && node -r tsconfig-paths/register scripts/dist/scripts/syncMainnetFulllist.js",
"verify-start": "tsc && node -r tsconfig-paths/register scripts/dist/scripts/verifyMainnetShortlist.js",
"test": "jest",
"lint": "eslint './src/**/*.ts' --quiet"
},
"dependencies": {
"axios": "^1.6.1",
"date-fns": "^2.30.0",
"deep-diff": "^1.0.2",
"dotenv": "^16.3.1",
"ethers": "5.6.1",
"fs-extra": "^11.1.1",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"module-alias": "^2.2.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/deep-diff": "^1.0.5",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"_moduleAliases": {
"src": "scripts/dist/src"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}