-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "beauty-ui-components",
"version": "1.0.8",
"description": "This is simple component library for react.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/tailwind.css"
],
"scripts": {
"build": "tsc && webpack",
"watch": "tsc && webpack --watch --progress"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^22.0.2",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.40",
"postcss-loader": "^8.1.1",
"react-syntax-highlighter": "^15.5.0",
"style-loader": "^4.0.0",
"styled-components": "^6.1.11",
"tailwindcss": "^3.4.7",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}