-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
{
"name": "fullstack-playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "pnpm -r lint",
"format": "prettier --write .",
"build": "pnpm common build",
"prepare": "husky",
"common": "pnpm --filter common",
"fe:react": "pnpm --filter react-frontend",
"be:hono": "pnpm --filter hono-backend",
"fe:next": "pnpm --filter next-frontend",
"fe:vue3": "pnpm --filter vue3-composition",
"cli": "tsx cli.ts"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"pnpm -r lint"
],
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.8.0+sha256.29bf2c5ceaea7991ee82eec15fe7162e0fad816d0c4a6b35a16c01d39274bf69",
"type": "module",
"engines": {
"node": ">=20.11.1"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/prettier-config": "github:adonisjs/prettier-config",
"@eslint/js": "^9.21.0",
"@next/eslint-plugin-next": "^15.3.0",
"concurrently": "^9.1.2",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"prettier-edgejs": "^0.2.35",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsx": "^4.19.3",
"typescript-eslint": "^8.29.1"
},
"dependencies": {
"prompts": "^2.4.2"
}
}