-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 2.26 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@eox/elements",
"homepage": "https://eox-a.github.io/EOxElements",
"private": true,
"version": "2.0.0",
"workspaces": [
"elements/*",
"utils"
],
"scripts": {
"start": "concurrently \"npm:watch:styles\" \"npm:watch:generate-manifest\" \"npm:storybook\"",
"watch:styles": "nodemon --watch ./utils/styles --ext css --exec 'npm run styles'",
"styles": "node ./tasks/init-style.js",
"build:all": "npm run styles && npm run build --ws",
"clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"cypress": "cypress open",
"test:all": "npm run styles && npm run test:component && npm run test:e2e",
"test:component": "npm run styles && cypress run --component",
"test:e2e": "npm run generate-manifest && npm run build:storybook && cypress run --e2e",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint elements",
"lint:fix": "eslint elements --fix",
"typecheck": "tsc",
"storybook": "storybook dev -p 6006",
"build:storybook": "npm run styles && storybook build -o docs",
"generate-manifest": "npx custom-elements-manifest analyze --litelement",
"watch:generate-manifest": "npx custom-elements-manifest analyze --litelement --watch",
"nyc:report": "nyc report --reporter=text-summary"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.2",
"@cypress/code-coverage": "^3.12.44",
"@cypress/mount-utils": "^4.0.0",
"@eox/eslint-config": "^2.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/blocks": "^8.0.0",
"@storybook/csf-tools": "^8.2.5",
"@storybook/test": "^8.1.6",
"@storybook/theming": "^8.0.0",
"@storybook/web-components": "^8.0.0",
"@storybook/web-components-vite": "^8.0.0",
"@types/lodash.throttle": "^4.1.9",
"concurrently": "^9.0.0",
"custom-elements-manifest": "^2.0.0",
"cypress": "^13.3.0",
"cypress-fail-on-console-error": "^5.1.1",
"cypress-lit": "^0.0.8",
"cypress-network-idle": "^1.14.2",
"nodemon": "^3.0.3",
"nyc": "^17.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.0.0",
"vite-plugin-istanbul": "^6.0.2"
},
"engines": {
"node": ">=20.0.0"
}
}