-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.51 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "extension-builder",
"version": "1.0.0",
"description": "Extension-Builder",
"type": "module",
"main": "public/index.php",
"scripts": {
"build": "vite build",
"lint:js": "eslint Resources/Public/jsDomainModeling/**/*.js",
"lint:scss": "stylelint 'Resources/Public/jsDomainModeling/**/*.css'",
"lint:format": "prettier --check 'Resources/Public/jsDomainModeling/**/*.{js,css}'",
"format": "prettier --write 'Resources/Public/jsDomainModeling/**/*.{js,css}'",
"lint": "pnpm run lint:js && pnpm run lint:scss && pnpm run lint:format",
"lint:fix": "prettier --write 'Resources/Public/jsDomainModeling/**/*.{js,css}' && eslint Resources/Public/jsDomainModeling/**/*.js --fix",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lit": "^3.2.0"
},
"author": "Philipp Kuhlmay",
"license": "GPL-2.0-or-later",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@storybook/web-components-vite": "^10.3.5",
"@types/node": "^20.19.39",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"storybook": "^10.3.5",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"vite": "^8.0.8"
}
}