-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.31 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
{
"name": "sopo",
"version": "0.1.2",
"author": "ftery0",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"license": "MIT",
"description": "SOPO 디자인 시스템",
"private": false,
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"babel-loader": "^9.2.1",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Sopo2023/SOPO_Design_system/issues",
"email": "[email protected]"
},
"keywords": [
"react",
"ui",
"design-system",
"react-components",
"components",
"typescript",
"library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Sopo2023/SOPO_Design_system.git"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@vitejs/plugin-react": "^4.3.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.11",
"turbo": "^2.0.9",
"vite": "^5.3.4"
},
"scripts": {
"build": "turbo run build && pnpm build:bundle",
"build:bundle": "tsc -p tsconfig.json && pnpm bundle",
"bundle": "rollup -c",
"build-storybook": "turbo run build-storybook",
"prepare": "husky",
"storybook": "turbo run storybook --filter=./packages/components",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint"
},
"husky": {
"scripts": {
"postinstall": "husky install",
"format": "prettier --cache --write .",
"lint": "eslint --cache ."
},
"hooks": {
"pre-commit": "pnpm lint-staged"
}
},
"packageManager": "[email protected]+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7"
}