diff options
| author | kj_sh604 | 2026-03-15 16:19:35 -0400 |
|---|---|---|
| committer | kj_sh604 | 2026-03-15 16:19:35 -0400 |
| commit | bfc2cec7d43eb8eaa46dd3f91084932381257059 (patch) | |
| tree | 0857e3aac2cff922826d4871ff54536b26fad6fc /excalidraw-app/package.json | |
| parent | 225db4a7805befe009fe055fc2ef5daedd6c04f9 (diff) | |
refactor: excalidraw-app/
Diffstat (limited to 'excalidraw-app/package.json')
| -rw-r--r-- | excalidraw-app/package.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/excalidraw-app/package.json b/excalidraw-app/package.json new file mode 100644 index 0000000..e5dcde0 --- /dev/null +++ b/excalidraw-app/package.json @@ -0,0 +1,56 @@ +{ + "name": "excalidraw-app", + "version": "1.0.0", + "private": true, + "homepage": ".", + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all", + "not safari < 12", + "not kaios <= 2.5", + "not edge < 79", + "not chrome < 70", + "not and_uc < 13", + "not samsung < 10" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "engines": { + "node": "18.0.0 - 22.x.x" + }, + "dependencies": { + "@excalidraw/random-username": "1.0.0", + "@sentry/browser": "9.0.1", + "callsites": "4.2.0", + "firebase": "11.3.1", + "i18next-browser-languagedetector": "6.1.4", + "idb-keyval": "6.0.3", + "jotai": "2.11.0", + "react": "19.0.0", + "react-dom": "19.0.0", + "socket.io-client": "4.7.2", + "vite-plugin-html": "3.2.2" + }, + "prettier": "@excalidraw/prettier-config", + "scripts": { + "build-node": "node ./scripts/build-node.js", + "build:app:docker": "cross-env VITE_APP_DISABLE_SENTRY=true vite build", + "build:app": "cross-env VITE_APP_GIT_SHA=$VERCEL_GIT_COMMIT_SHA cross-env VITE_APP_ENABLE_TRACKING=true vite build", + "build:version": "node ../scripts/build-version.js", + "build": "yarn build:app && yarn build:version", + "start": "yarn && vite", + "start:production": "yarn build && yarn serve", + "serve": "npx http-server build -a localhost -p 5001 -o", + "build:preview": "yarn build && vite preview --port 5000" + }, + "devDependencies": { + "vite-plugin-sitemap": "0.7.1" + } +} |
