-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
47
{
"name": "@l2beat/token-list",
"version": "0.1.0",
"private": true,
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node -r esbuild-register src/index.ts",
"build": "tsc",
"clean": "rm -rf build",
"format:fix": "prettier --write .",
"format": "prettier --check .",
"lint:fix": "yarn lint --fix",
"lint": "eslint --ext .ts --max-warnings 0 src",
"test": "mocha",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"earl": "^1.1.0",
"esbuild": "^0.19.2",
"esbuild-register": "^3.4.2",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"@l2beat/backend-tools": "^0.2.0",
"@types/lodash": "^4.14.197",
"@types/papaparse": "^5.3.8",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"node-fetch": "^3.3.2",
"papaparse": "^5.4.1",
"viem": "^1.10.1",
"zod": "^3.22.2"
}
}