-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "@kubex/zinc",
"version": "1.0.0",
"description": "",
"keywords": [],
"repository": "[email protected]:kubex/zinc",
"license": "MIT",
"author": "",
"contributors": [
"Brooke Bryan <brooke@bajb,net>",
"Tom Kay <[email protected]>",
"Kyle Essex <[email protected]>"
],
"type": "module",
"main": "src/index.ts",
"files": [
"dist",
"scss",
"src"
],
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "vitest",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer src/**/*.ts",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build"
},
"dependencies": {
"@lit-labs/observers": "^2.0.4",
"@lit/task": "^1.0.1",
"air-datepicker": "^3.3.5",
"apexcharts": "^3.53.0",
"chart.js": "^4.3.0",
"lit": "^2.7.6",
"lodash": "^4.17.21",
"quill": "^2.0.2"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.5",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-themes": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/web-components": "^8.2.9",
"@storybook/web-components-vite": "^8.2.9",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"autoprefixer": "^10.4.14",
"composed-offset-position": "^0.0.4",
"eslint": "^8.43.0",
"eslint-plugin-storybook": "^0.6.13",
"lit-analyzer": "^1.2.1",
"npm-run-all": "^4.1.5",
"sass": "^1.79.5",
"storybook": "^8.2.9",
"storybook-addon-mock": "^5.0.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.2.11",
"vitest": "^1.6.0"
}
}