-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 795 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "app-survival-android",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "node ./node_modules/vite/bin/vite.js",
"build": "node ./node_modules/typescript/lib/tsc.js -b && node ./node_modules/vite/bin/vite.js build",
"preview": "node ./node_modules/vite/bin/vite.js preview",
"test": "npm run test:unit && npm run build",
"test:unit": "node ./node_modules/vitest/dist/cli.js run",
"test:watch": "node ./node_modules/vitest/dist/cli.js",
"test:e2e": "playwright test",
"test:e2e:ci": "npm run test:dom && playwright test",
"test:dom": "node scripts/validate-dom-hooks.mjs"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}