Files
cstb-next/package.json

81 lines
2.3 KiB
JSON
Raw Normal View History

2024-09-20 02:28:25 +08:00
{
2024-09-20 23:15:42 +08:00
"name": "cstb-next",
"version": "0.0.1",
2024-09-20 02:28:25 +08:00
"private": true,
"author": {
2024-09-20 23:15:42 +08:00
"name": "Purp1e",
"email": "zx8244@qq.com"
2024-09-20 02:28:25 +08:00
},
"scripts": {
"next-start": "cross-env BROWSER=none next dev",
"next-build": "next build",
"tauri": "tauri",
"build": "tauri build",
"dev": "tauri dev",
"lint": "next lint && biome check src/",
"prepare": "husky"
},
"dependencies": {
2024-09-20 10:14:36 +08:00
"@icon-park/react": "^1.4.2",
2024-09-26 16:58:40 +08:00
"@reactuses/core": "^5.0.21",
2024-09-20 10:14:36 +08:00
"@tauri-apps/api": "2.0.0-rc.5",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.2",
"@tauri-apps/plugin-dialog": "2.0.0-rc.1",
"@tauri-apps/plugin-fs": "2.0.0-rc.2",
"@tauri-apps/plugin-global-shortcut": "2.0.0-rc.1",
"@tauri-apps/plugin-http": "2.0.0-rc.2",
"@tauri-apps/plugin-notification": "2.0.0-rc.1",
"@tauri-apps/plugin-os": "2.0.0-rc.1",
"@tauri-apps/plugin-process": "2.0.0-rc.1",
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
2024-09-26 16:58:40 +08:00
"@tauri-apps/plugin-store": "^2.0.0-rc",
"@types/throttle-debounce": "^5.0.2",
2024-09-26 16:58:40 +08:00
"jotai": "^2.10.0",
2024-09-20 10:14:36 +08:00
"next": "^14.2.13",
2024-09-20 02:28:25 +08:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
"throttle-debounce": "^5.0.2",
"zustand": "5.0.0-rc.2"
2024-09-20 02:28:25 +08:00
},
"devDependencies": {
2024-09-20 03:09:57 +08:00
"@biomejs/biome": "^1.9.2",
2024-09-20 10:14:36 +08:00
"@tauri-apps/cli": "2.0.0-rc.16",
2024-09-20 02:28:25 +08:00
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
2024-09-20 03:09:57 +08:00
"@types/react": "^18.3.8",
2024-09-20 02:28:25 +08:00
"@types/react-dom": "^18.3.0",
2024-09-20 03:09:57 +08:00
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
2024-09-20 02:28:25 +08:00
"autoprefixer": "^10.4.20",
2024-09-20 23:15:42 +08:00
"clsx": "^2.1.1",
2024-09-20 02:28:25 +08:00
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
2024-09-20 03:09:57 +08:00
"eslint": "^8.57.1",
2024-09-20 10:14:36 +08:00
"eslint-config-next": "^14.2.13",
2024-09-20 02:28:25 +08:00
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.0",
2024-09-20 23:15:42 +08:00
"tailwind-merge": "^2.5.2",
2024-09-20 03:09:57 +08:00
"tailwindcss": "^3.4.12",
2024-09-20 02:28:25 +08:00
"typescript": "^5.6.2"
},
"browserslist": {
2024-09-20 23:15:42 +08:00
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
2024-09-20 02:28:25 +08:00
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}