forked from rpldy/react-uploady
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
173 lines (173 loc) · 6.92 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"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",
"release:normal": "pnpm bootstrap; pnpm clean; node scripts/release.js",
"release": "pnpm release:normal --versionArgs=\"--force-publish=*\" ",
"release:alpha": "pnpm release --publishArgs=\"--dist-tag alpha\" ",
"release:rc": "pnpm release --publishArgs=\"--dist-tag next\" --versionArgs=\"--preid rc\" ",
"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 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 ./packages --cache",
"lint:nocache": "eslint ./packages",
"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",
"vitest:ci": "pnpm vitest:cov --run --reporter=junit --reporter=verbose --outputFile.junit=reports/junit/js-test-results.xml",
"ci-flow": "pnpm flow",
"ci-lint": "pnpm lint:nocache",
"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 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 cypress run --e2e --browser chrome",
"cy:run:ci": "wait-on http://localhost:8001 -d 1000 && CYPRESS_BASE_URL=http://localhost:8001 cypress run --e2e --record false --reporter mocha-multi-reporters --reporter-options configFile=\"cypress/reporters-config.json\"",
"cy:run:ff": "pnpm cy:run --browser firefox",
"e2e:ci": "concurrently --success last --kill-others \"pnpm bundle:serve\" \"pnpm sb:serve\" \"pnpm cy:run:ci\"",
"server": "cd server; PORT=4000 node index.js",
"tus": "cd server; DEBUG=tus-node-server* PORT=4000 node tus.js"
},
"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.10.1",
"@actions/github": "^6.0.0",
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-proposal-function-bind": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-flow": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/runtime-corejs3": "^7.23.9",
"@bunchtogether/vite-plugin-flow": "^1.0.2",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@commitlint/config-lerna-scopes": "^18.6.1",
"@monorepo-utils/package-utils": "^2.10.4",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-interactions": "^7.6.16",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.6.16",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.16",
"@storybook/react": "^7.6.16",
"@storybook/react-webpack5": "^7.6.16",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.56",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-istanbul": "^1.3.0",
"@vitest/coverage-v8": "^1.3.0",
"@vitest/ui": "^1.3.0",
"async": "^3.2.5",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-syntax-hermes-parser": "^0.19.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"bundlesize2": "^0.0.31",
"bytes": "^3.1.2",
"chai": "^4.3.10",
"chai-dom": "^1.12.0",
"chalk": "^4.1.2",
"concurrently": "^8.2.2",
"core-js": "^3.36.0",
"cypress": "^13.6.4",
"cypress-intercept-formdata": "^0.6.0",
"eslint": "^8.56.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "^3.0.5",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-async": "^1.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vitest": "^0.3.22",
"flow-bin": "^0.229.0",
"fs-extra": "^11.2.0",
"hermes-eslint": "^0.19.1",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"license-webpack-plugin": "^4.0.2",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"octokit-plugin-create-pull-request": "^5.1.1",
"pacote": "^17.0.6",
"rc-progress": "^3.5.1",
"react": "^18.2.0",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"rimraf": "^5.0.5",
"semver-utils": "^1.1.4",
"shelljs": "^0.8.5",
"storybook": "^7.6.16",
"styled-components": "^6.1.8",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-babel": "^1.2.0",
"vitest": "^1.3.0",
"wait-on": "^7.2.0",
"weak-napi": "^2.0.2",
"webpack": "5",
"webpack-cli": "5",
"webpack-merge": "^5.10.0",
"webpack-virtual-modules": "^0.6.1",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"pnpm": {
"overrides": {
"@storybook/addon-actions": "~7.5"
}
}
}