forked from rpldy/react-uploady
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 6.25 KB
/
Copy pathpackage.json
File metadata and controls
158 lines (158 loc) · 6.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@rpldy/root",
"version": "1.0.0",
"author": "yoav niran (https://github.com/yoavniran)",
"scripts": {
"upgradep": "node scripts/upgradeDep.mjs",
"bundle": "rimraf bundle; node scripts/bundle.mjs --validate",
"bundle:prod": "UPLOADY_BUNDLE=true NODE_ENV=production pnpm bundle",
"bundle:serve": "http-server ./bundle -p 8009",
"build": "NODE_ENV=production lerna run build --stream --concurrency=7 -- FORCE_COLOR=1 NODE_ENV=production",
"clean": "rimraf bundle; lerna exec --stream -- rimraf lib umd",
"sb:start": "SB_INTERNAL=true storybook dev -p 9111 --ci",
"sb:build": "storybook build -c .storybook -o .sb-static",
"sb:build:prod": "SB_OPTIMIZE=true pnpm sb:build",
"sb:build:internal": "SB_INTERNAL=true UPLOAD_URL=http://test.upload pnpm sb:build:prod",
"sb:bw": "pnpm sb:build --watch",
"sb:serve": "http-server ./.sb-static -p 8001",
"start": "pnpm sb:start",
"flow": "flow --show-all-errors",
"lint": "eslint",
"ensureTypes": "node scripts/ensureTypes.mjs",
"types": "pnpm ensureTypes && tsc --outDir ./tstest",
"test": "pnpm flow && pnpm lint && pnpm vitest:cov && pnpm types",
"vitest": "vitest",
"vitest:cov": "pnpm vitest --coverage --run",
"vitest:ci": "pnpm vitest:cov --reporter=junit --reporter=verbose --outputFile.junit=reports/junit/js-test-results.xml",
"ci-flow": "pnpm flow",
"ci-lint": "pnpm lint",
"ci-types": "pnpm types",
"test:ci": "concurrently -s all --kill-others-on-fail \"pnpm:ci-* \"",
"deps:serve": "concurrently --kill-others \"pnpm sb:serve\" \"pnpm bundle:serve\"",
"cy:open": "CYPRESS_BASE_URL=http://localhost:9111 cypress open --e2e --browser chrome",
"cy:comp": "cypress open --component --browser chrome",
"cy:open:build": "CYPRESS_BASE_URL=http://localhost:8001 UPLOAD_URL=http://test.upload cypress open --e2e --browser chrome",
"cy:run": "wait-on http://localhost:9111 -d 1000 && CYPRESS_BASE_URL=http://localhost:9111 cypress run --e2e --browser chrome",
"cy:run:build": "CYPRESS_BASE_URL=http://localhost:8001 UPLOAD_URL=http://test.upload cypress run --e2e --browser chrome",
"cy:run:gh": "CYPRESS_BASE_URL=http://127.0.0.1:8001 UPLOAD_URL=http://test.upload cypress run --e2e --record false",
"cy:parallel": "node scripts/parallel-e2e.mjs -s 'cypress/integration/**/*-spec.js' -t 2 -c 'pnpm cy:run' --arguments=''",
"cy:parallel:gh": "pnpm cy:parallel -p 'xvfb-run -a' -t 3 -c 'pnpm cy:run:gh' --weights-file='cypress/e2e-weights.json' --json-results='cypress/reports/mochawesome/.jsons/*.json'"
},
"private": true,
"license": "MIT",
"workspaces": [
"packages/core/*",
"packages/ui/*",
"packages/native/*"
],
"homepage": "https://react-uploady.org",
"repository": {
"type": "git",
"url": "https://github.com/rpldy/react-uploady"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-uploady"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-export-default-from": "^7.27.1",
"@babel/plugin-proposal-function-bind": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-flow": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/runtime-corejs3": "^7.28.4",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/config-lerna-scopes": "^20.0.0",
"@eslint/js": "^9.39.1",
"@monorepo-utils/package-utils": "^2.11.0",
"@storybook/addon-docs": "10.1.3",
"@storybook/addon-links": "10.1.10",
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/react-webpack5": "10.1.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.6",
"@vitest/coverage-istanbul": "^4.0.14",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"async": "^3.2.6",
"babel-loader": "^10.0.0",
"babel-plugin-istanbul": "^7.0.1",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-syntax-hermes-parser": "0.32.0",
"babel-plugin-transform-flow-enums": "^0.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"bytes": "^3.1.2",
"chai": "^6.2.1",
"chai-dom": "^1.12.1",
"chalk": "^5.6.2",
"concurrently": "^9.2.1",
"core-js": "^3.47.0",
"cypress": "^15.7.0",
"cypress-intercept-formdata": "^0.6.0",
"cypress-mochawesome-reporter": "^4.0.2",
"cypress-multi-reporters": "^2.0.5",
"eslint": "^9.39.1",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-async": "^1.3.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.1.3",
"eslint-plugin-vitest": "^0.5.4",
"execa": "^9.6.0",
"filesize": "^11.0.13",
"flow-bin": "0.291.0",
"fs-extra": "^11.3.2",
"glob": "^13.0.0",
"globals": "^16.5.0",
"hermes-eslint": "^0.32.0",
"html-webpack-plugin": "^5.6.5",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lerna": "^9.0.3",
"license-webpack-plugin": "^4.0.2",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"mocha-junit-reporter": "^2.2.1",
"overweight": "^1.0.1",
"pacote": "^21.0.4",
"rc-progress": "^4.0.0",
"react": "^19.2.0",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"rimraf": "^6.1.2",
"semver-utils": "^1.1.4",
"shelljs": "^0.10.0",
"storybook": "10.1.10",
"styled-components": "^6.1.19",
"tty-browserify": "^0.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vite": "^7.2.4",
"vite-plugin-babel": "^1.3.2",
"vitest": "^4.0.14",
"wait-on": "^9.0.3",
"weak-napi": "^2.0.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-virtual-modules": "^0.6.2",
"xml2js": "^0.6.2",
"yargs": "^18.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}