Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/apps/auth/package.json

24 lines
511 B
JSON
Raw Normal View History

2023-01-24 10:32:40 +01:00
{
"name": "umbraco-backoffice-auth",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Umbraco HQ",
"email": "backoffice@umbraco.com"
},
2023-01-24 12:08:38 +01:00
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"files": [
"dist"
],
2023-01-24 10:32:40 +01:00
"scripts": {
"dev": "vite",
2023-01-24 12:08:38 +01:00
"build": "tsc && vite build",
"build:production": "tsc && vite build --mode production",
2023-01-24 10:32:40 +01:00
"preview": "vite preview",
2023-01-24 12:08:38 +01:00
"test": "web-test-runner \"test/**/*.test.ts\" --node-resolve",
"test:e2e": "npx playwright test"
2023-01-24 10:32:40 +01:00
}
}