-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.09 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
{
"name": "@kindynosmx/evm-indexer-backend",
"private": true,
"version": "1.0.0",
"dependencies": {
"@cloudflare/itty-router-openapi": "^1.0.3",
"itty-cors": "^0.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231016.0",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-custom-order-fix": "^0.1.1",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"wrangler": "^3.13.2"
},
"scripts": {
"deploy": "wrangler deploy",
"format": "prettier --ignore-path .gitignore 'src/**/*.{md,json,ts,js}' --write",
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore '**/*.{md,json,ts}' --max-warnings=0 --fix",
"start": "wrangler dev",
"tscheck": "tsc -p tsconfig.json --noEmit"
}
}