-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "rent-map",
"private": true,
"version": "0.11.0",
"scripts": {
"gen:constants": "node scripts/gen-constants-esm.cjs",
"predev": "npm run gen:constants",
"prebuild": "npm run gen:constants",
"pretest": "npm run gen:constants",
"dev": "vite --config vite.config.mjs",
"build": "vite build --config vite.config.mjs",
"preview": "vite preview --config vite.config.mjs",
"test": "node --test tests/sync-utils.test.cjs tests/escape.test.cjs tests/format.test.cjs tests/filters.test.cjs tests/io.test.cjs tests/constants.test.cjs tests/src-filters.test.cjs tests/api-guard.test.cjs tests/map-surface.test.cjs",
"smoke": "node scripts/smoke.cjs",
"test:e2e": "playwright test"
},
"dependencies": {
"motion": "^12.42.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@vitejs/plugin-react": "^4.3.4",
"vite": "^5.4.11"
}
}