mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/platform.git
synced 2025-08-28 11:46:02 +08:00
86 lines
2.9 KiB
JSON
86 lines
2.9 KiB
JSON
{
|
|
"name": "@parcelvoy/ui",
|
|
"version": "0.1.0",
|
|
"repository": "https://github.com/parcelvoy/platform",
|
|
"dependencies": {
|
|
"@fontsource/inter": "^4.5.14",
|
|
"@headlessui/react": "1.7.13",
|
|
"@heroicons/react": "^2.0.11",
|
|
"@monaco-editor/react": "^4.4.6",
|
|
"@popperjs/core": "^2.11.6",
|
|
"@rehookify/datepicker": "^3.2.0",
|
|
"@textea/json-viewer": "2.16.2",
|
|
"@types/node": "^16.11.41",
|
|
"@types/react": "^18.0.14",
|
|
"@types/react-dom": "^18.0.5",
|
|
"@types/uuid": "^9.0.0",
|
|
"autoprefixer": "^10.4.12",
|
|
"axios": "0.27.2",
|
|
"clsx": "^1.2.1",
|
|
"date-fns": "^2.29.3",
|
|
"date-fns-tz": "^1.3.8",
|
|
"grapesjs": "^0.21.1",
|
|
"grapesjs-mjml": "^1.0.4",
|
|
"monaco-editor": "^0.41.0",
|
|
"react": "^18.2.0",
|
|
"react-charts": "^3.0.0-beta.54",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.33.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-popper": "^2.3.0",
|
|
"react-router-dom": "^6.4.2",
|
|
"reactflow": "11.7.2",
|
|
"uuid": "^9.0.0",
|
|
"web-vitals": "^2.1.4"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
"docker:build": "docker buildx build -f ./Dockerfile -t ghcr.io/parcelvoy/ui:latest -t ghcr.io/parcelvoy/ui:$npm_config_tag ../../",
|
|
"docker:build:push": "npm run docker:build -- --push",
|
|
"package:build": "rimraf lib/ && npm run package:build:esm && npm run package:build:cjs",
|
|
"package:build:esm": "tsc --project ./tsconfig.lib.json && copyfiles -u 1 src/**/*.css lib/esm/",
|
|
"package:build:cjs": "tsc --project ./tsconfig.lib.json --module commonjs --outDir lib/cjs && copyfiles -u 1 src/**/*.css lib/cjs/",
|
|
"package:publish": "npm run package:build && npm version $npm_config_tag --no-git-tag-version && npm pack && npm publish --tag=latest"
|
|
},
|
|
"main": "./lib/cjs/mod.js",
|
|
"module": "./lib/esm/mod.js",
|
|
"types": "./lib/esm/mod.d.ts",
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/react": "^13.3.0",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/jest": "^27.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
"copyfiles": "2.4.1",
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-standard-with-typescript": "^23.0.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-n": "^15.5.1",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"http-proxy-middleware": "^2.0.6",
|
|
"react-scripts": "5.0.1",
|
|
"rimraf": "5.0.1",
|
|
"source-map-explorer": "2.5.3",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
]
|
|
}
|