|
6 | 6 | "lint": "yarn g:lint src --ext .ts,.tsx", |
7 | 7 | "format": "run lint --fix", |
8 | 8 | "test:type": "run tsc", |
9 | | - "start": "webpack serve --mode=development", |
10 | | - "start:prod": "yarn dlx serve dist", |
11 | | - "build:browser": "webpack --mode=production", |
| 9 | + "start": "anansi serve --dev ./src/index.tsx", |
| 10 | + "start:prod": "NODE_ENV=production WEBPACK_PUBLIC_PATH='/assets/' anansi serve ./dist-server/App.js", |
| 11 | + "build": "npm run build:client && npm run build:server", |
| 12 | + "build:client": "WEBPACK_PUBLIC_PATH='/assets/' webpack --mode=production", |
| 13 | + "build:server": "WEBPACK_PUBLIC_PATH='/assets/' webpack --mode=production --target=node --env entrypath=index.server.tsx", |
12 | 14 | "build:analyze": "webpack --mode=production --env analyze", |
13 | 15 | "build:profile": "webpack --mode=production --env profile", |
14 | 16 | "test:pkg": "webpack --env check=nobuild" |
|
28 | 30 | "private": true, |
29 | 31 | "license": "Apache-2.0", |
30 | 32 | "devDependencies": { |
| 33 | + "@anansi/cli": "3.1.88", |
31 | 34 | "@anansi/babel-preset": "6.2.19", |
32 | 35 | "@anansi/browserslist-config": "1.7.3", |
33 | 36 | "@anansi/webpack-config": "21.1.3", |
|
48 | 51 | "webpack-dev-server": "5.2.2" |
49 | 52 | }, |
50 | 53 | "dependencies": { |
| 54 | + "@anansi/core": "0.21.0", |
51 | 55 | "@anansi/router": "0.10.19", |
52 | | - "@ant-design/icons": "^6.0.0", |
| 56 | + "@ant-design/cssinjs": "2.0.1", |
| 57 | + "@ant-design/icons": "6.1.0", |
53 | 58 | "@babel/runtime-corejs3": "^7.26.7", |
54 | 59 | "@data-client/graphql": "0.15.1-beta-20251110013913-ef632c49a03da67187b6097fe8154893cd930d30", |
55 | 60 | "@data-client/img": "0.15.0-beta-20251022142546-a457d1596871fb28f1a91f2531cc259db4d55a9c", |
56 | 61 | "@data-client/react": "0.15.0-beta-20251022142546-a457d1596871fb28f1a91f2531cc259db4d55a9c", |
57 | 62 | "@data-client/rest": "0.15.1-beta-20251116224907-3174fe59b114d2037762a6458f5576d23e483ba4", |
58 | | - "@js-temporal/polyfill": "^0.5.0", |
| 63 | + "@js-temporal/polyfill": "^0.5.1", |
59 | 64 | "antd": "6.0.0", |
60 | 65 | "core-js": "^3.40.0", |
61 | 66 | "history": "^5.3.0", |
|
64 | 69 | "react-dom": "19.2.0", |
65 | 70 | "react-markdown": "10.1.0", |
66 | 71 | "rehype-highlight": "7.0.2", |
67 | | - "remark-gfm": "^4.0.0", |
68 | | - "remark-remove-comments": "^1.0.1", |
| 72 | + "remark-gfm": "4.0.1", |
| 73 | + "remark-remove-comments": "1.1.1", |
69 | 74 | "uuid": "^13.0.0" |
70 | 75 | } |
71 | 76 | } |
0 commit comments