-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.21 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
{
"name": "@cocstorage/ui-editor",
"version": "0.1.16",
"description": "Cocstorage React UI Editor Component",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/kimjh96/cocstorage-ui-editor",
"homepage": "https://63a8436965659ae13b9f832c-drletoskfu.chromatic.com",
"keywords": [
"react",
"react-component",
"react-editor",
"component",
"ui",
"editor"
],
"author": "kimjh96 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier --write --config ./.prettierrc \"**/*.{js,ts,tsx,json}\"",
"convention": "pnpm prettier && eslint --fix \"**/*.{js,ts,tsx}\"",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"chromatic": "npx chromatic --project-token=c8ebc3c1aad3"
},
"devDependencies": {
"@cocstorage/ui": "^0.1.59",
"@cocstorage/ui-icons": "^0.0.3",
"@storybook/addon-docs": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "^7.4.6",
"@types/node": "^20.8.4",
"@types/react": "^18.2.27",
"@types/react-dom": "^18.2.12",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react-swc": "^3.4.0",
"chromatic": "^7.2.3",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.6",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0"
},
"peerDependencies": {
"@cocstorage/ui": "^0",
"@cocstorage/ui-icons": "^0",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}