-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
163 lines (163 loc) · 6.51 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
{
"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 ./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 --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: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 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.10.1",
"@actions/github": "^6.0.0",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/plugin-proposal-function-bind": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/runtime-corejs3": "^7.25.6",
"@bunchtogether/vite-plugin-flow": "^1.0.2",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/config-lerna-scopes": "^19.0.0",
"@monorepo-utils/package-utils": "^2.10.4",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-interactions": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@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.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-istanbul": "^2.0.3",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"async": "^3.2.5",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-syntax-hermes-parser": "^0.23.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"bundlesize": "^0.18.2",
"bytes": "^3.1.2",
"chai": "^5.1.1",
"chai-dom": "^1.12.0",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"core-js": "^3.37.1",
"cypress": "^13.14.1",
"cypress-intercept-formdata": "^0.6.0",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-multi-reporters": "^1.6.4",
"eslint": "^8.57.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-no-async": "^1.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vitest": "^0.3.22",
"execa": "^9.3.0",
"filesize": "^10.1.4",
"flow-bin": "^0.245.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"hermes-eslint": "^0.23.0",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"husky": "^9.1.1",
"jsdom": "^24.1.1",
"lerna": "^8.1.8",
"license-webpack-plugin": "^4.0.2",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"mocha-junit-reporter": "^2.2.1",
"pacote": "^18.0.6",
"rc-progress": "^3.5.1",
"react": "^18.3.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-icons": "^5.0.1",
"rimraf": "^5.0.5",
"semver-utils": "^1.1.4",
"shelljs": "^0.8.5",
"storybook": "^7.6.16",
"styled-components": "^6.1.12",
"typescript": "^5.3.3",
"vite": "^5.3.4",
"vite-plugin-babel": "^1.2.0",
"vitest": "^2.0.3",
"wait-on": "^7.2.0",
"weak-napi": "^2.0.2",
"webpack": "5",
"webpack-cli": "5",
"webpack-merge": "^6.0.1",
"webpack-virtual-modules": "^0.6.2",
"xml2js": "^0.6.2",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}