mirror of
https://github.com/status-im/status-web.git
synced 2025-02-17 15:06:50 +00:00
* install `js-waku@^0.24.0` * install `js-waku@^0.25.0` * resolve some breaking changes * add timeout * upgrade `eslint-import-resolver-typescript` * add `process.env.VITEST` condition * increase timeout * fixup * ignore `emitSelf` * replace `parcel` with `vite` * update `.gitignore` * change `dev` npm script * fix favicon href * load `.env` files * remove 'alias" * add `preview` * upgrade vite * set `target`s in `vite.config.ts` * upgrade `@vitejs/plugin-react` * remove comment * Update package.json * Update vite.config.ts
27 lines
610 B
JSON
27 lines
610 B
JSON
{
|
|
"private": true,
|
|
"name": "community",
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"browserslist": "> 0.5%, last 2 versions, not dead, not ios_saf < 13",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"prebuild": "rm -rf dist",
|
|
"build": "vite build",
|
|
"start": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@status-im/react": "0.1.0-alpha.2",
|
|
"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",
|
|
"process": "^0.11.10",
|
|
"typescript": "^4.0.0",
|
|
"vite": "^3.1.0"
|
|
}
|
|
}
|