-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) Β· 2.95 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
{
"name": "@chwh/cds",
"version": "1.1.1",
"description": "cold design system for React apps",
"keywords": [
"React",
"ui",
"component"
],
"type": "module",
"scripts": {
"dev": "yarn storybook",
"build": "tsc -p tsconfig.publish.json && vite build --config vite.publish.config.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint-staged": "lint-staged",
"chromatic": "chromatic --exit-zero-on-changes",
"generate": "plop"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --config ./.eslintrc --fix"
]
},
"files": [
"dist"
],
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"sideEffects": false,
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@react-icons/all-files": "^4.1.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.1",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-loader": "^8.3.0",
"chromatic": "^6.17.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-order": "^2.1.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"plop": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.1.0",
"vite-tsconfig-paths": "^4.0.5"
},
"homepage": "https://github.com/c-h-w-h/cds#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/c-h-w-h/cds.git",
"directory": "/"
},
"contributors": [
"μ΄μ°μ¬ <[email protected]> (https://prayinforrain.github.io/)",
"Hyunbin Lee <[email protected]> (https://iyu88.github.io/)",
"Seyoung Kim <[email protected]> (https://velog.io/@se030)",
"sunmin <[email protected]> (https://polarmin.tistory.com/)",
"dohun <[email protected]> (https://dohun31.tistory.com/)"
],
"bugs": {
"url": "https://github.com/c-h-w-h/cds/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
}
}