-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@jkimmeyer/panorama-design-system",
"version": "0.0.21",
"type": "module",
"main": "dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jkimmeyer/panorama-design-system.git"
},
"exports": {
".": "./dist/main.js",
"./styles": "./dist/style.css"
},
"files": [
"dist",
"tokens"
],
"scripts": {
"dev": "vite",
"build": "npm run build:components && npm run build:types",
"build:components": "tsc && vite build",
"build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly --declaration",
"codestyle:typescript": "tsc --noEmit --composite false",
"codestyle:eslint": "eslint --max-warnings 0 --ext .js,.ts, .",
"codestyle:eslint:fix": "eslint --ext .js,.ts, --fix .",
"codestyle:prettier": "prettier --check .",
"codestyle:prettier:fix": "prettier --write .",
"codestyle:stylelint": "stylelint 'src/**/component.(css|ts)'",
"codestyle:stylelint:fix": "stylelint --fix '**/component.(css|ts)'",
"codestyle": "npm run codestyle:typescript && npm run codestyle:eslint && npm run codestyle:stylelint && npm run codestyle:prettier ",
"codestyle:fix": "npm run codestyle:eslint:fix && npm run codestyle:stylelint:fix && npm run codestyle:prettier:fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs-build",
"test": "vitest",
"plop": "plop",
"generate:components": "plop component a all && plop component b all && npm run codestyle:fix"
},
"dependencies": {
"iconify-icon": "^1.0.8",
"lit": "^3.0.0",
"stylelint-config-standard": "^34.0.0"
},
"devDependencies": {
"@crutchcorn/plop": "^4.1.0-alpha.1",
"@open-wc/testing": "^3.2.1",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-styling": "^2.0.2-next.4",
"@storybook/web-components": "^7.5.3",
"@storybook/web-components-vite": "^7.5.3",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@types/jest-axe": "^3.5.8",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-lit-a11y": "^4.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-wc": "^2.0.4",
"jsdom": "^22.1.0",
"lit-html": "^3.0.0",
"postcss": "^8.4.31",
"postcss-lit": "^1.1.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.2.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss-lit": "^2.1.0",
"shadow-dom-testing-library": "^1.11.0",
"storybook": "^7.5.3",
"stylelint": "^15.11.0",
"stylelint-order": "^6.0.3",
"stylelint-use-logical-spec": "^5.0.0",
"ts-lit-plugin": "^2.0.0",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.34.6"
}
}