-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.63 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
{
"name": "semantic-styled-ui",
"version": "0.42.0",
"description": "Set of UI components based of Semantic UI with Styled Components",
"keywords": [
"semantic",
"semantic-ui",
"styled",
"components",
"styled-components",
"ui",
"react",
"gatsby"
],
"homepage": "https://github.com/zachhardesty7/semantic-styled-ui",
"bugs": "https://github.com/zachhardesty7/semantic-styled-ui/issues",
"main": "dist/index.cjs.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"unpkg": "dist/index.umd.min.js",
"license": "MIT",
"author": "Zach Hardesty <hello@zachhardesty.com> (https://zachhardesty.com)",
"repository": "github:zachhardesty7/semantic-styled-ui",
"browserslist": [
">0.25%",
"not dead"
],
"eslintConfig": {
"extends": "hardesty/prettier"
},
"prettier": {
"semi": false
},
"scripts": {
"clean": "rimraf dist/*",
"clean:full": "rimraf dist/* node_modules yarn.lock && yarn",
"build": "yarn clean && rollup --environment NODE_ENV:production --config --minifyInternalExports --compact --sourcemap",
"build:analyze": "yarn clean && rollup --environment NODE_ENV:development --config --minifyInternalExports --compact --configAnalyze",
"build:dev": "rollup --environment NODE_ENV:development --config --sourcemap --configDev --configPropTypes",
"watch": "rollup --environment NODE_ENV:development --config --watch --sourcemap --configDev --configPropTypes",
"pub:next": "yarn build && publish --tag next",
"pub": "yarn build && publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "NODE_ENV=production build-storybook"
},
"dependencies": {
"@types/react": "^17.0.0",
"prop-types": "^15.7.2",
"react-scroll": "^1.8.1",
"semantic-ui-react": "^2.0.1",
"set-wrapper-display-name": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-transform-react-jsx-source": "^7.12.1",
"@babel/preset-env": "7.12.10",
"@babel/preset-react": "^7.12.10",
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/addon-links": "^6.1.10",
"@storybook/react": "^6.1.10",
"@types/styled-components": "5.1.5",
"auto-changelog": "^2.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "7.15.0",
"eslint-config-hardesty": "^3.5.0",
"faker": "^5.1.0",
"fomantic-ui-css": "^2.8.7",
"glob": "^7.1.6",
"prettier": "^2.2.1",
"publish-me-maybe": "^1.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-styleguidist": "^11.1.5",
"rimraf": "^3.0.2",
"rollup": "2.34.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"semantic-ui-css": "^2.4.1",
"styled-components": "^5.2.1",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript-to-proptypes": "^2.2.0"
},
"peerDependencies": {
"fomantic-ui-css": "^2.8.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
}
}