|
9 | 9 | "import": "./index.js",
|
10 | 10 | "require": "./index.js"
|
11 | 11 | },
|
12 |
| - "./bundler": { |
13 |
| - "import": "./lib/backend/bundler/config.js" |
14 |
| - } |
| 12 | + "./bundler": "./lib/backend/bundler/index.js" |
15 | 13 | },
|
16 | 14 | "scripts": {
|
17 | 15 | "test": "mocha --loader=ts-node/esm ./spec/index.js",
|
|
21 | 19 | "lint": "eslint './spec/**/*' './src/**/*' './cy/**/*' './*'",
|
22 | 20 | "cover": "NODE_ENV=test nyc --reporter=lcov --reporter=text-lcov npm test",
|
23 | 21 | "codecov": "NODE_ENV=test nyc --reporter=text-lcov npm test | codecov --pipe",
|
24 |
| - "bundle": "node bin/watch-dev.js", |
25 |
| - "bundle:globals": "node bin/bundle-globals.js", |
| 22 | + "bundle": "node bin/app.js", |
| 23 | + "bundle:globals": "node bin/globals.js", |
26 | 24 | "cspell": "cspell src/**/*.ts src/**/*.js src/**/*.tsx src/**/*.jsx",
|
27 |
| - "check:all": "yarn types && yarn cspell && yarn lint && yarn test && ONCE=true yarn bundle && ONCE=true NODE_ENV=production yarn bundle", |
28 |
| - "dev": "yarn build && yarn types && yarn bundle:globals && ONCE=true yarn bundle", |
| 25 | + "check:all": "yarn types && yarn cspell && yarn lint && yarn test && yarn bundle && NODE_ENV=production yarn bundle", |
| 26 | + "dev": "yarn build && yarn types && yarn bundle:globals && yarn bundle && NODE_ENV=production yarn bundle:globals && NODE_ENV=production yarn bundle", |
29 | 27 | "release": "semantic-release"
|
30 | 28 | },
|
31 | 29 | "bin": {
|
|
87 | 85 | },
|
88 | 86 | "homepage": "https://github.com/SoftwareBrothers/adminjs#readme",
|
89 | 87 | "dependencies": {
|
90 |
| - "@adminjs/design-system": "^4.0.0", |
91 |
| - "@babel/core": "^7.21.0", |
92 |
| - "@babel/parser": "^7.21.0", |
93 |
| - "@babel/plugin-syntax-import-assertions": "^7.20.0", |
94 |
| - "@babel/plugin-transform-runtime": "^7.21.0", |
95 |
| - "@babel/preset-env": "^7.20.2", |
96 |
| - "@babel/preset-react": "^7.18.6", |
97 |
| - "@babel/preset-typescript": "^7.21.0", |
98 |
| - "@babel/register": "^7.21.0", |
| 88 | + "@adminjs/design-system": "^4.0.3", |
| 89 | + "@babel/core": "^7.23.9", |
| 90 | + "@babel/parser": "^7.23.9", |
| 91 | + "@babel/plugin-syntax-import-assertions": "^7.23.3", |
| 92 | + "@babel/plugin-transform-runtime": "^7.23.9", |
| 93 | + "@babel/preset-env": "^7.23.9", |
| 94 | + "@babel/preset-react": "^7.23.3", |
| 95 | + "@babel/preset-typescript": "^7.23.3", |
| 96 | + "@babel/register": "^7.23.7", |
99 | 97 | "@hello-pangea/dnd": "^16.2.0",
|
100 | 98 | "@redux-devtools/extension": "^3.2.5",
|
101 |
| - "@rollup/plugin-babel": "^6.0.3", |
102 |
| - "@rollup/plugin-commonjs": "^24.0.1", |
103 |
| - "@rollup/plugin-json": "^6.0.0", |
104 |
| - "@rollup/plugin-node-resolve": "^15.0.1", |
105 |
| - "@rollup/plugin-replace": "^5.0.2", |
106 |
| - "@rollup/plugin-terser": "^0.4.0", |
| 99 | + "@rollup/plugin-babel": "^6.0.4", |
| 100 | + "@rollup/plugin-commonjs": "^25.0.7", |
| 101 | + "@rollup/plugin-json": "^6.1.0", |
| 102 | + "@rollup/plugin-node-resolve": "^15.2.3", |
| 103 | + "@rollup/plugin-replace": "^5.0.5", |
107 | 104 | "axios": "^1.3.4",
|
108 | 105 | "commander": "^10.0.0",
|
109 | 106 | "flat": "^5.0.2",
|
|
124 | 121 | "react-router": "^6.9.0",
|
125 | 122 | "react-router-dom": "^6.9.0",
|
126 | 123 | "redux": "^4.2.1",
|
127 |
| - "rollup": "^3.15.0", |
128 |
| - "rollup-plugin-polyfill-node": "^0.12.0", |
| 124 | + "regenerator-runtime": "^0.14.1", |
| 125 | + "rollup": "^4.11.0", |
| 126 | + "rollup-plugin-esbuild-minify": "^1.1.1", |
| 127 | + "rollup-plugin-polyfill-node": "^0.13.0", |
129 | 128 | "slash": "^5.0.0",
|
130 | 129 | "uuid": "^9.0.0",
|
131 | 130 | "xss": "^1.0.14"
|
132 | 131 | },
|
133 | 132 | "devDependencies": {
|
134 |
| - "@babel/cli": "^7.21.0", |
| 133 | + "@babel/cli": "^7.23.9", |
135 | 134 | "@commitlint/cli": "^17.5.0",
|
136 | 135 | "@commitlint/config-conventional": "^17.4.4",
|
137 | 136 | "@semantic-release/git": "^10.0.1",
|
138 | 137 | "@testing-library/react": "^14.0.0",
|
139 |
| - "@types/babel-core": "^6.25.7", |
| 138 | + "@types/babel-core": "^6.25.10", |
140 | 139 | "@types/chai": "^4.3.4",
|
141 | 140 | "@types/chai-as-promised": "^7.1.5",
|
142 | 141 | "@types/factory-girl": "^5.0.8",
|
143 | 142 | "@types/flat": "^5.0.2",
|
144 | 143 | "@types/lodash": "^4.14.194",
|
145 | 144 | "@types/mocha": "^10.0.1",
|
146 |
| - "@types/node": "^18.15.11", |
| 145 | + "@types/node": "^20.6.0", |
147 | 146 | "@types/qs": "^6.9.7",
|
148 | 147 | "@types/react": "^18.0.35",
|
149 | 148 | "@types/react-dom": "^18.0.11",
|
|
155 | 154 | "chai": "^4.3.7",
|
156 | 155 | "chai-as-promised": "^7.1.1",
|
157 | 156 | "chai-change": "^2.1.2",
|
158 |
| - "core-js": "^3.29.1", |
| 157 | + "core-js": "^3.36.0", |
159 | 158 | "cspell": "^6.30.2",
|
160 | 159 | "eslint": "^8.36.0",
|
161 | 160 | "eslint-config-airbnb": "^19.0.4",
|
|
166 | 165 | "eslint-plugin-react-hooks": "^4.6.0",
|
167 | 166 | "factory-girl": "^5.0.4",
|
168 | 167 | "husky": "^8.0.3",
|
169 |
| - "istanbul": "^0.4.5", |
170 | 168 | "jsdom": "^21.1.1",
|
171 | 169 | "jsdom-global": "^3.0.2",
|
172 | 170 | "mocha": "^10.2.0",
|
173 | 171 | "node-esm-import-all": "^1.0.0",
|
174 | 172 | "npm-run-all": "^4.1.5",
|
175 |
| - "nyc": "^15.1.0", |
176 | 173 | "semantic-release": "^20.1.3",
|
177 | 174 | "semantic-release-slack-bot": "^4.0.0",
|
178 | 175 | "sinon": "^15.0.2",
|
179 | 176 | "sinon-chai": "^3.7.0",
|
180 |
| - "typescript": "^5.0.2" |
| 177 | + "ts-node": "10.8.1", |
| 178 | + "typescript": "^5.3.3" |
181 | 179 | },
|
182 | 180 | "resolutions": {
|
183 |
| - "@babel/core": "7.21.0", |
184 | 181 | "react-redux": "8.0.5",
|
185 | 182 | "redux": "4.2.1"
|
186 | 183 | }
|
|
0 commit comments