-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 939 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 939 Bytes
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
{
"name": "commbank-dot-eth",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "VITE_RUNNING_LOCAL_INDEXER=true pnpm --filter envio-indexer dev & pnpm --filter client dev",
"build": "pnpm --filter client build",
"build-contracts": "pnpm --filter contracts build",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css,scss,html}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css,scss,html}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9"
}
}
}