-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.84 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
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@cheesebit/ui",
"version": "0.6.0",
"description": "CheeseBit React components",
"files": [
"dist/*"
],
"scripts": {
"start": "yarn build-styles && yarn dev",
"dev": "npm run storybook",
"test": "jest",
"coverage": "jest --coverage",
"preversion": "npm test",
"postversion": "git push origin --tags && shx rm -rf dist",
"prepublishOnly": "npm run build",
"watch": "rollup -c --environment BUILD:development --watch",
"build": "rollup -c --environment BUILD:prod",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"build-styles": "sass ./src/styles/index.scss ./public/styles.css",
"release": "semantic-release"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"git add"
],
"src/**/*.{css,scss}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"prop-types": "15.8.1",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"dependencies": {
"@cheesebit/classy": "1.1.2",
"@cheesebit/use-automaton": "0.3.1",
"@cheesebit/use-slice": "0.1.2",
"@cheesebit/use-value": "1.0.2",
"lodash.debounce": "4.0.8",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"lodash.unset": "4.5.2",
"nanoid": "3.3.4",
"ramda": "0.28.0"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/plugin-proposal-async-generator-functions": "7.17.12",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
"@babel/plugin-proposal-optional-chaining": "7.17.12",
"@babel/plugin-transform-runtime": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/register": "7.17.7",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-interactions": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/preset-scss": "1.0.3",
"@storybook/react": "6.5.9",
"@storybook/testing-library": "0.0.13",
"@storybook/testing-react": "1.3.0",
"@svgr/rollup": "5.5.0",
"@svgr/webpack": "5.5.0",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/react-hooks": "8.0.0",
"@testing-library/user-event": "14.2.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
"babel-jest": "28.1.0",
"babel-loader": "8.2.5",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-ramda": "2.0.0",
"chance": "1.1.8",
"css-loader": "5.2.6",
"cssnano": "5.1.9",
"enzyme": "3.11.0",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"lint-staged": "12.4.2",
"npm-run-all": "4.1.5",
"postcss": "^8.4.14",
"prettier": "npm:wp-prettier@latest",
"prop-types": "15.8.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-test-renderer": "18.1.0",
"regenerator-runtime": "0.13.9",
"rollup": "2.74.1",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-gzip": "3.0.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"sass": "1.52.1",
"sass-loader": "10.1.0",
"semantic-release": "19.0.3",
"shx": "0.3.4",
"style-loader": "2.0.0"
},
"author": "Welington Silva",
"homepage": "https://ui.cheesebit.io/",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cheesebit/ui"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.15.0"
}
}