reactemplate/package.json

40 lines
959 B
JSON
Raw Permalink Normal View History

2022-04-02 14:54:55 +08:00
{
2022-04-02 15:13:30 +08:00
"name": "reactesse",
2022-04-02 14:54:55 +08:00
"version": "0.0.0",
"private": true,
2022-04-02 15:13:30 +08:00
"packageManager": "pnpm@6.32.4",
"description": "Template for React TypeScript Vite projects.",
2022-04-02 14:54:55 +08:00
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "vite --port 8888 --open",
"build": "vite build",
2022-04-02 16:18:22 +08:00
"test": "vitest",
2022-04-02 14:54:55 +08:00
"lint": "eslint ."
},
"dependencies": {
"react": "^18.0.0",
2022-04-02 16:15:34 +08:00
"react-dom": "^18.0.0",
"react-router-dom": "^6.3.0"
2022-04-02 14:54:55 +08:00
},
"devDependencies": {
"@antfu/eslint-config": "^0.19.2",
2022-04-02 15:13:30 +08:00
"@iconify-json/carbon": "^1.1.2",
2022-04-02 16:15:34 +08:00
"@types/node": "^17.0.23",
2022-04-02 14:54:55 +08:00
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
2022-04-02 15:13:30 +08:00
"@unocss/reset": "^0.30.10",
2022-04-02 14:54:55 +08:00
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.12.0",
2022-04-02 18:30:58 +08:00
"jsdom": "^19.0.0",
2022-04-02 14:54:55 +08:00
"typescript": "^4.6.3",
2022-04-02 15:13:30 +08:00
"unocss": "^0.30.10",
2022-04-02 14:54:55 +08:00
"unplugin-auto-import": "^0.6.9",
2022-04-02 16:18:22 +08:00
"vite": "^2.9.1",
"vitest": "^0.8.2"
2022-04-02 17:16:44 +08:00
},
"eslintConfig": {
"extends": "@antfu"
2022-04-02 14:54:55 +08:00
}
}