forked from reuters-graphics/graphics-components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.85 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@onsvisual/svelte-components",
"version": "0.0.1",
"type": "module",
"private": false,
"homepage": "https://onsvisual.github.io/svelte-components",
"repository": {
"type": "git",
"url": "git+https://github.com/onsvisual/svelte-components.git"
},
"scripts": {
"start": "storybook dev -p 3000",
"new": "node ./bin/newComponent/index.cjs",
"build:package": "node ./bin/buildPackage/index.js",
"build:chromatic": "storybook build -o docs",
"build:docs": "storybook build -o docs && touch ./docs/.nojekyll",
"build": "npm-run-all build:package build:docs",
"prepublishOnly": "npm run build:package",
"postversion": "git push origin && git push origin --tags"
},
"license": "MIT",
"types": "./dist/@types/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.19"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/eslint-plugin": "^7.19.1",
"@babel/preset-env": "^7.21.4",
"@evilmartians/lefthook": "^1.3.10",
"@reuters-graphics/eslint-config": "^0.0.2",
"@storybook/addon-actions": "^7.0.20",
"@storybook/addon-docs": "^7.0.20",
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-interactions": "^7.0.20",
"@storybook/addon-links": "^7.0.20",
"@storybook/addon-mdx-gfm": "^7.0.20",
"@storybook/addon-svelte-csf": "^3.0.3",
"@storybook/blocks": "^7.0.20",
"@storybook/builder-vite": "^7.0.20",
"@storybook/manager-api": "^7.0.20",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/svelte": "^7.0.20",
"@storybook/svelte-vite": "^7.0.20",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "^7.0.20",
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tsconfig/svelte": "^4.0.1",
"@types/gtag.js": "^0.0.12",
"@types/proper-url-join": "^2.1.1",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"change-case": "^4.1.2",
"chromatic": "^6.19.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-svelte3": "^4.0.0",
"fs-extra": "^11.1.1",
"kleur": "^4.1.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prompts": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.0",
"sass": "^1.63.0",
"storybook": "7.0",
"svelte": "^3.59.1",
"svelte-loader": "^3.1.8",
"svelte-preprocess": "^5.0.4",
"svelte2tsx": "^0.6.15",
"tiny-glob": "^0.2.9",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@splidejs/svelte-splide": "^0.2.9",
"@sveltejs/svelte-scroller": "^2.0.7",
"bootstrap": "^5.2.0",
"classnames": "^2.3.1",
"dayjs": "^1.11.3",
"journalize": "^2.5.1",
"lodash-es": "^4.17.21",
"lottie-web": "^5.7.13",
"marked": "^4.0.8",
"parse-color": "^1.0.0",
"proper-url-join": "^2.1.1",
"pym.js": "^1.3.2",
"slugify": "^1.6.5",
"svelte-fa": "^2.4.0",
"svelte-intersection-observer": "^0.10.0",
"svelte-search": "^2.0.1",
"svelte-select": "^5.6.1",
"ua-parser-js": "^0.7.27"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"svelte": "./dist/index.js",
"bugs": {
"url": "https://github.com/onsvisual/svelte-components/issues"
},
"readme": "ERROR: No README data found!"
}