-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.39 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
{
"name": "rrr-web-components",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:flashflashrevolution/rrr-web-components.git",
"license": "MIT",
"author": "Zageron <hello@zageron.ca>",
"scripts": {
"build": "run-s build:styles build:code",
"build:code": "run-p build:storybook build:vite",
"build:storybook": "build-storybook",
"build:styles": "postcss src --base src --dir dist --verbose",
"build:vite": "vite build",
"dev": "run-p \"dev:*\"",
"dev:storybook": "start-storybook -p 6006",
"dev:styles": "postcss src --base src --dir dist --verbose --watch",
"dev:vite": "vite",
"fix": "run-p --print-label \"fix:*\"",
"fix:code": "eslint --ignore-path .gitignore -f pretty --color \"**/*.{cjs,ts}\" --fix",
"fix:styles": "stylelint --ignore-path .gitignore --color \"**/*.css.ts\" --fix",
"lint": "run-p --print-label \"lint:*\"",
"lint:code": "eslint --ignore-path .gitignore -f pretty --color \"**/*.{cjs,ts}\"",
"lint:styles": "stylelint --ignore-path .gitignore --color \"**/*.css.ts\"",
"preview": "vite preview"
},
"dependencies": {
"@ffr/rrr-head-wasm": "file:../rrr/crates/head-wasm/pkg",
"lit": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-a11y": "^6.5.12",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/core-common": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/web-components": "^6.5.12",
"@types/babel__core": "^7.1.19",
"@types/eslint": "^8.4.6",
"@types/file-entry-cache": "^5.0.2",
"@types/node": "^18.7.23",
"@types/prettier": "^2.7.1",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"core-js": "^3.25.3",
"cssnano": "^5.1.13",
"cssnano-preset-lite": "^2.1.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lit": "^1.6.1",
"eslint-plugin-lit-a11y": "^2.2.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-unicorn": "^43.0.2",
"lit-html": "^2.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"postcss-lit": "^0.5.0",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-top-level-await": "^1.1.1",
"vite-plugin-wasm": "^3.0.0",
"webpack": "^5.74.0"
},
"packageManager": "yarn@4.0.0-rc.13"
}