-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.44 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
{
"version": "0.0.1",
"license": "MIT",
"name": "web-component-sass-starter-kit",
"author": "cloudshadow",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup --config",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"sideEffects": [
"*.css",
"*.scss"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/index.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/index.esm.min.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@linaria/babel-preset": "^4.4.3",
"@linaria/core": "^4.2.8",
"@linaria/react": "^4.3.6",
"@linaria/rollup": "^4.3.6",
"@linaria/webpack-loader": "^4.1.15",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@storybook/addon-essentials": "^7.0.0-rc.7",
"@storybook/addon-interactions": "^7.0.0-rc.7",
"@storybook/addon-links": "^7.0.0-rc.7",
"@storybook/addon-styling": "^0.3.1",
"@storybook/blocks": "^7.0.0-rc.7",
"@storybook/react": "^7.0.0-rc.7",
"@storybook/react-webpack5": "^7.0.0-rc.7",
"@storybook/testing-library": "^0.0.14-next.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^2.7.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"resolve-url-loader": "^5.0.0",
"rollup": "2.79.1",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styles": "^4.0.0",
"size-limit": "^8.2.4",
"storybook": "^7.0.0-rc.7",
"style-loader": "^3.3.2",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": ">=16"
}
}