-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.47 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
{
"name": "chartfull",
"version": "1.0.0-alpha.5",
"repository": "https://github.com/ryu-man/grafico.git",
"author": "ryuman <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"./dist",
"!./dist/**/*.stories.*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"storybook:dev": "storybook dev -p 6006 --no-open",
"storybook:build": "storybook build",
"lib:build": "pnpm run package",
"prepublishOnly": "pnpm run lib:build"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@chromatic-com/storybook": "1.2.18",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-svelte-csf": "^4.1.2",
"@storybook/blocks": "^8.0.0",
"@storybook/svelte": "^8.0.0",
"@storybook/sveltekit": "^8.0.0",
"@storybook/test": "^8.0.0",
"@sveltejs/adapter-auto": "3.1.1",
"@sveltejs/kit": "2.5.0",
"@sveltejs/package": "2.3.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/d3": "^7.4.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-loader": "^9.1.3",
"csstype": "^3.1.3",
"date-fns": "^2.30.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"lodash": "^4.17.21",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"storybook": "^8.0.0",
"svelte-check": "^3.6.8",
"svelte-loader": "^3.1.9",
"svelte-preprocess": "^5.1.3",
"svelte-tools": "^1.2.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.4"
},
"dependencies": {
"@floating-ui/dom": "^1.6.3",
"@storybook/test": "8.0.0",
"d3": "^7.9.0",
"gsap": "^3.12.5",
"hash-it": "^6.0.0",
"svelte": "^4.2.12",
"svelte-portal": "^2.2.1"
}
}