-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
130 lines (130 loc) · 4.1 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
{
"name": "community-ui",
"version": "2.0.5",
"description": "A react component library and UI kit built by the community, for the community.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"dist/**/*.{js,css}",
"docs/CHANGELOG.md",
"package.json"
]
}
]
]
},
"scripts": {
"develop": "npm run build && npm run storybook",
"build": "npm run build:storybook && npm run build:lib",
"build:storybook": "build-storybook",
"build:lib": "rollup -c",
"format": "prettier --write .",
"lint": "prettier --check .",
"setup": "npm run setup:husky && npm run setup:cz",
"setup:husky": "husky install",
"setup:cz": "npm install -g commitizen",
"cz": "npx cz",
"storybook": "start-storybook -p 6006",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-code-academy/community-ui.git"
},
"keywords": [
"component",
"library",
"react",
"ui",
"kit",
"communityui",
"community-ui"
],
"author": "OpenCodeAcademy.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-code-academy/community-ui/issues"
},
"homepage": "https://github.com/open-code-academy/community-ui#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@semantic-release/changelog": "^6.0.1",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.39",
"@types/styled-components": "^5.1.23",
"babel-loader": "^8.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"semantic-release-npm-github-publish": "^1.5.1",
"styled-components": "^5.3.3",
"ts-jest": "^27.1.3",
"ts-loader": "^9.3.1",
"typescript": "^4.5.5",
"utility-types": "^3.10.0",
"webpack": "^5.74.0"
},
"resolutions": {
"@storybook/{app}/webpack": "^5"
},
"peerDependencies": {
"react": "^17",
"react-dom": "^17"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}