-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.43 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ushell-common-components",
"version": "1.0.23",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"start": "react-scripts start",
"build": "npm run build:esm && npm run build:cjs && npm run tw",
"tw": "npm run tw:cjs && npm run tw:esm",
"tw:cjs": "npx tailwindcss-cli@latest build tailwind.css -o dist/cjs/tailwind.css && cross-env COPYFILE_DISABLE=true copy tailwind.config.js dist/cjs/tailwind.config.js",
"tw:esm": "npx tailwindcss-cli@latest build tailwind.css -o dist/esm/tailwind.css && cross-env COPYFILE_DISABLE=true copy tailwind.config.js dist/esm/tailwind.config.js",
"copydev": "node copy-folder.js",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"prepare": "npm run build"
},
"keywords": [
"react",
"typescript",
"ushell"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectUShell/UShell.CommonComponents.JS.git"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@types/react": "^18.2.12",
"@types/react-resizable": "^3.0.7",
"cross-env": "^7.0.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.4.12",
"typescript": "^4.9.5"
},
"dependencies": {
"@tanstack/react-query": "^5.51.32",
"@types/react-dom": "^18.2.5",
"apexcharts": "^3.50.0",
"css-loader": "^6.7.3",
"fs-extra": "^11.1.1",
"fusefx-modeldescription": "^2.0.20",
"fusefx-repositorycontract": "^0.5.3",
"postcss-loader": "^7.2.4",
"raw-loader": "^4.0.2",
"react-apexcharts": "^1.4.1",
"react-resizable": "^3.0.5",
"recharts": "^2.12.7",
"rxjs": "^7.8.0",
"style-loader": "^3.3.2",
"styled-components": "^6.1.8",
"tailwindcss-cli": "^0.1.2",
"ushell-modulebase": "^1.0.23",
"ushell-portfoliodescription": "^1.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}