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

34 lines
826 B
JSON
Raw Normal View History

2022-05-17 09:22:18 +02:00
{
"name": "umbraco-cms-backoffice",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
2022-05-17 10:18:24 +02:00
"build": "tsc && vite build",
"test": "echo 'TODO: Implement test'",
2022-05-17 13:03:27 +02:00
"lint": "eslint --cache --ext .ts . --ignore-path .gitignore"
2022-05-17 09:22:18 +02:00
},
2022-05-17 13:10:40 +02:00
"engines": {
"node": ">=16.0.0 <17",
"npm": ">=8.0.0 < 9"
},
2022-05-17 09:22:18 +02:00
"dependencies": {
2022-05-17 12:40:50 +02:00
"@umbraco-ui/uui": "^0.2.0",
2022-05-17 09:22:18 +02:00
"lit": "^2.0.2"
},
"devDependencies": {
2022-05-17 11:10:20 +02:00
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^1.1.0-next.1",
2022-05-17 12:40:50 +02:00
"msw": "^0.39.2",
2022-05-17 11:10:20 +02:00
"prettier": "2.6.2",
"typescript": "^4.5.4",
2022-05-17 12:40:50 +02:00
"vite": "^2.9.9"
2022-05-17 10:38:51 +02:00
},
"msw": {
"workerDirectory": "public"
2022-05-17 09:22:18 +02:00
}
2022-05-17 13:10:40 +02:00
}