um-react/package.json

59 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2023-05-07 19:11:16 +00:00
{
"name": "um-react",
"private": true,
2023-05-15 20:09:44 +00:00
"version": "0.1.0",
2023-05-07 19:11:16 +00:00
"type": "module",
"scripts": {
"start": "vite",
2023-05-15 20:32:48 +00:00
"build": "tsc -p tsconfig.prod.json && vite build",
2023-05-07 19:11:16 +00:00
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
2023-05-15 20:04:45 +00:00
"format": "prettier -w .",
2023-05-15 20:32:48 +00:00
"test": "NODE_ENV=test jest",
2023-05-07 19:11:16 +00:00
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
2023-05-14 22:15:59 +00:00
"@jixun/libparakeet": "0.0.0-exp.16",
2023-05-07 22:29:37 +00:00
"@reduxjs/toolkit": "^1.9.5",
2023-05-07 19:11:16 +00:00
"framer-motion": "^10.12.8",
"nanoid": "^4.0.2",
2023-05-07 19:11:16 +00:00
"react": "^18.2.0",
2023-05-07 22:29:37 +00:00
"react-dom": "^18.2.0",
2023-05-14 23:09:54 +00:00
"react-promise-suspense": "^0.3.4",
2023-05-07 22:29:37 +00:00
"react-redux": "^8.0.5"
2023-05-07 19:11:16 +00:00
},
"devDependencies": {
2023-05-14 23:22:23 +00:00
"@rollup/plugin-replace": "^5.0.2",
2023-05-15 20:32:48 +00:00
"@swc/core": "^1.3.58",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
2023-05-09 00:22:00 +00:00
"@types/node": "^20.1.1",
2023-05-07 19:11:16 +00:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
2023-05-15 20:32:48 +00:00
"@types/testing-library__jest-dom": "^5.14.5",
2023-05-07 19:11:16 +00:00
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
2023-05-15 20:32:48 +00:00
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
2023-05-07 19:11:16 +00:00
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.2"
2023-05-07 19:11:16 +00:00
},
"prettier": {
"singleQuote": true,
2023-05-15 20:04:45 +00:00
"printWidth": 120,
"tabWidth": 2
2023-05-07 19:11:16 +00:00
}
2023-05-15 20:32:48 +00:00
}