Compare commits
2 commits
35be603db1
...
5acc224c58
| Author | SHA1 | Date | |
|---|---|---|---|
| 5acc224c58 | |||
| 4aed25a68c |
5 changed files with 924 additions and 219 deletions
12
.prettierrc
12
.prettierrc
|
|
@ -3,5 +3,13 @@
|
|||
"tabWidth": 2,
|
||||
"semi": true,
|
||||
"singleQuote": true,
|
||||
"printWidth": 96
|
||||
}
|
||||
"printWidth": 96,
|
||||
"plugins": [
|
||||
"@ianvs/prettier-plugin-sort-imports",
|
||||
"prettier-plugin-css-order",
|
||||
"prettier-plugin-jsdoc",
|
||||
"prettier-plugin-multiline-arrays",
|
||||
"prettier-plugin-organize-attributes",
|
||||
"prettier-plugin-tailwindcss"
|
||||
]
|
||||
}
|
||||
2
build.sh
2
build.sh
|
|
@ -1,3 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
pnpm run check
|
||||
pnpm run build
|
||||
sudo systemctl restart bitdori-www
|
||||
|
|
|
|||
18
package.json
18
package.json
|
|
@ -3,25 +3,31 @@
|
|||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"check": "pnpm i && pnpx next telemetry disable && pnpm i baseline-browser-mapping@latest -D && pnpx browserslist && git remote -v && git branch && node --version && pnpx npm-check-updates",
|
||||
"check": "pnpm i && pnpx next telemetry disable && pnpm i baseline-browser-mapping@latest -D && pnpx browserslist && git remote -v && node --version && pnpx npm-check-updates",
|
||||
"dev": "pnpm run check && next dev",
|
||||
"build": "next build",
|
||||
"start": "next start --port 7007",
|
||||
"lint": "eslint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "16.2.12",
|
||||
"react": "19.2.4",
|
||||
"react-dom": "19.2.4"
|
||||
"next": "16.3.3",
|
||||
"react": "19.2.8",
|
||||
"react-dom": "19.2.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
||||
"@tailwindcss/postcss": "^4",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^19",
|
||||
"@types/react-dom": "^19",
|
||||
"baseline-browser-mapping": "^2.11.4",
|
||||
"baseline-browser-mapping": "^2.11.19",
|
||||
"eslint": "^9",
|
||||
"eslint-config-next": "16.2.12",
|
||||
"eslint-config-next": "16.3.3",
|
||||
"prettier-plugin-css-order": "^2.2.0",
|
||||
"prettier-plugin-jsdoc": "^1.8.1",
|
||||
"prettier-plugin-multiline-arrays": "^4.1.11",
|
||||
"prettier-plugin-organize-attributes": "^1.0.0",
|
||||
"prettier-plugin-tailwindcss": "^0.8.1",
|
||||
"tailwindcss": "^4",
|
||||
"typescript": "^5"
|
||||
}
|
||||
|
|
|
|||
1098
pnpm-lock.yaml
generated
1098
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,3 +4,16 @@ allowBuilds:
|
|||
ignoredBuiltDependencies:
|
||||
- sharp
|
||||
- unrs-resolver
|
||||
minimumReleaseAgeExclude:
|
||||
- '@next/env@16.3.3'
|
||||
- '@next/eslint-plugin-next@16.3.3'
|
||||
- '@next/swc-darwin-arm64@16.3.3'
|
||||
- '@next/swc-darwin-x64@16.3.3'
|
||||
- '@next/swc-linux-arm64-gnu@16.3.3'
|
||||
- '@next/swc-linux-arm64-musl@16.3.3'
|
||||
- '@next/swc-linux-x64-gnu@16.3.3'
|
||||
- '@next/swc-linux-x64-musl@16.3.3'
|
||||
- '@next/swc-win32-arm64-msvc@16.3.3'
|
||||
- '@next/swc-win32-x64-msvc@16.3.3'
|
||||
- eslint-config-next@16.3.3
|
||||
- next@16.3.3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue