-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.15 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
{
"name": "@dots-ui/react",
"version": "0.0.0-development",
"description": "Yet another React component library",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/dots-ui/dots-react",
"author": "Mohammad Al-Ahdal <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@storybook/addon-essentials": "^7.0.9",
"@storybook/addon-interactions": "^7.0.9",
"@storybook/addon-links": "^7.0.9",
"@storybook/blocks": "^7.0.9",
"@storybook/react": "^7.0.9",
"@storybook/react-webpack5": "^7.0.9",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.2.6",
"cz-conventional-changelog": "^3.3.0",
"postcss": "^8.4.23",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.21.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"semantic-release": "^21.0.2",
"storybook": "^7.0.9",
"type-fest": "^3.10.0",
"typescript": "^5.0.4",
"use-dark-mode": "^2.3.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release"
},
"dependencies": {
"next": "^13.4.2",
"styled-components": "6.0.0-rc.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"repositoryUrl": "https://github.com/dots-ui/dots-react"
},
"publishConfig": {
"access": "public"
}
}