-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.32 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.32 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
{
"name": "@hdoc/dev-challenges",
"private": true,
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "npkill",
"lint": "bash ./scripts/lint.sh",
"lint:vanilla": "eslint --ext js --report-unused-disable-directives --max-warnings 0",
"lint:react": "eslint --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:ssr": "eslint --ext ts,tsx,astro --report-unused-disable-directives --max-warnings 0",
"gen:vanilla": "hygen app vanilla --is_vanilla=1",
"gen:react": "hygen app react",
"gen:ssr": "hygen app ssr --is_ssr=1",
"gen:service": "hygen service new"
},
"author": "Héctor Ochoa <hector.ochoa.dev@gmail.com>",
"packageManager": "pnpm@9.6.0",
"license": "MIT",
"devDependencies": {
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"eslint": "catalog:",
"eslint-plugin-astro": "catalog:",
"eslint-plugin-react": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-react-refresh": "catalog:",
"hygen": "catalog:",
"npkill": "catalog:",
"prettier": "catalog:",
"prettier-plugin-astro": "catalog:",
"prettier-plugin-ejs": "1.0.3",
"typescript": "catalog:"
}
}