This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.9 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
{
"name": "@dlarroder/playground",
"author": "Dale Larroder",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build && yarn build-tailwind",
"test": "tsdx test --passWithNoTests",
"lint": "npx eslint src",
"prepare": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "NODE_OPTIONS=\"--openssl-legacy-provider\" start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-tailwind": "npx tailwindcss -o ./dist/styles.css --minify",
"semantic-release": "semantic-release --branches master"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,json}": [
"yarn prettier --write"
]
},
"size-limit": [
{
"path": "dist/playground.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/playground.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "7.19.1",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/npm": "9.0.1",
"@size-limit/preset-small-lib": "8.1.0",
"@storybook/addon-essentials": "6.5.12",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.5.12",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addons": "6.5.12",
"@storybook/react": "6.5.12",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"autoprefixer": "10.4.11",
"babel-loader": "8.2.5",
"cssnano": "5.1.13",
"eslint": "8.30.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.16",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"rollup-plugin-postcss": "4.0.2",
"semantic-release": "19.0.5",
"size-limit": "8.1.0",
"tailwindcss": "3.1.8",
"tsdx": "0.14.1",
"tslib": "2.4.0",
"typescript": "4.8.3"
},
"dependencies": {
"@emotion/core": "11.0.0",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@headlessui/react": "1.7.2",
"classnames": "2.3.2",
"framer-motion": "7.5.0",
"react-icons": "4.7.1",
"twin.macro": "3.0.0"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"repository": {
"type": "git",
"url": "https://github.com/dlarroder/playground2.git"
}
}