mirror of
https://github.com/status-im/status-web.git
synced 2025-01-09 12:15:55 +00:00
0f9a1754ce
* rename community to with-parcel * add with-next example * update example names and unify configs * add vite example * use new JSX transform in examples * disable necessary eslint rules for examples * add next output to prettierignore * add remix example * update engines in package.json * remove readme from with-next example * update vite example * update with-next example * remove with-remix example
27 lines
518 B
JSON
27 lines
518 B
JSON
{
|
|
"name": "with-vite",
|
|
"type": "module",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"start": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@status-im/react": "^0.1.1",
|
|
"react": "^17.0.0",
|
|
"react-dom": "^17.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@vitejs/plugin-react": "^2.1.0",
|
|
"typescript": "^4.8.4",
|
|
"vite": "^3.1.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
}
|
|
}
|