-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 993 Bytes
/
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
{
"name": "nep-mirror-proxy",
"version": "1.0.0",
"description": "Implement for Nep Mirror Protocol V1 with proxy storage",
"author": "Cno",
"license": "MPL-2.0",
"workspaces": [
"app",
"web"
],
"scripts": {
"dev": "cd app && pnpm run dev",
"serve": "cd web && pnpm run build --silent && cd ../app && pnpm run dev",
"prepare": "simple-git-hooks",
"lint": "eslint --fix app/src/**/* web/src/**/*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-prettier": "^5.1.2",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.9.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"packageManager": "pnpm@9.11.0"
}