-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 KB
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
{
"name": "@weathercloset/ui",
"version": "0.0.0-development",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"weathercloset",
"designsystem"
],
"repository": "https://github.com/weathercloset/ui.git",
"author": "Jonghyeon Ko <flowithusdev@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn clean && rollup -c",
"build:storybook": "build-storybook -o out",
"clean": "rimraf dist .out",
"commit": "git-cz",
"prepublish": "yarn build",
"start": "yarn storybook",
"storybook": "yarn build && start-storybook -p 9009 -s public",
"semantic-release": "semantic-release --branches main"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-strip": "^2.1.0",
"@storybook/addon-a11y": "^6.4.13",
"@storybook/addon-docs": "^6.4.13",
"@storybook/react": "^6.4.13",
"@svgr/rollup": "^6.2.0",
"@types/react": "^16.9.35",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.1",
"cz-conventional-changelog": "^3.3.0",
"postcss": "^8.4.5",
"rollup": "^2.64.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.2.10",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-plugin-url": "^3.0.1",
"sass-loader": "^12.4.0",
"semantic-release": "^19.0.2",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}