-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.45 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
{
"name": "github-app",
"version": "0.4.15",
"description": "github-app - A reactive data client example",
"scripts": {
"lint": "yarn g:lint src --ext .ts,.tsx",
"format": "run lint --fix",
"test:type": "run tsc",
"start": "anansi serve --dev ./src/index.tsx",
"start:prod": "NODE_ENV=production WEBPACK_PUBLIC_PATH='/assets/' anansi serve ./dist-server/App.js",
"build": "npm run build:client && npm run build:server",
"build:client": "WEBPACK_PUBLIC_PATH='/assets/' webpack --mode=production",
"build:server": "WEBPACK_PUBLIC_PATH='/assets/' webpack --mode=production --target=node --env entrypath=index.server.tsx",
"build:analyze": "webpack --mode=production --env analyze",
"build:profile": "webpack --mode=production --env profile",
"test:pkg": "webpack --env check=nobuild"
},
"stackblitz": {
"startCommand": "npm start"
},
"engines": {
"node": ">=20.0.0"
},
"browserslist": "extends @anansi/browserslist-config",
"keywords": [
"anansi"
],
"main": "src/index.ts",
"types": "src/index.ts",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@anansi/cli": "3.1.107",
"@anansi/babel-preset": "6.2.27",
"@anansi/browserslist-config": "1.7.5",
"@anansi/webpack-config": "21.1.19",
"@babel/core": "7.29.7",
"@linaria/core": "6.3.0",
"@linaria/react": "6.3.0",
"@linaria/shaker": "5.0.3",
"@types/lodash": "4.14.192",
"@types/parse-link-header": "^2.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"react-refresh": "0.18.0",
"serve": "14.2.6",
"webpack": "5.108.4",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.6"
},
"dependencies": {
"@anansi/core": "0.22.12",
"@anansi/router": "0.10.24",
"@ant-design/cssinjs": "2.1.2",
"@ant-design/icons": "6.3.2",
"@babel/runtime-corejs3": "^7.26.7",
"@data-client/graphql": "0.18.0",
"@data-client/img": "0.18.0",
"@data-client/react": "0.18.1",
"@data-client/rest": "0.18.1",
"temporal-polyfill": "^0.3.0",
"antd": "6.5.2",
"core-js": "^3.48.0",
"history": "^5.3.0",
"parse-link-header": "^2.0.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "10.1.0",
"rehype-highlight": "7.0.2",
"remark-gfm": "4.0.1",
"remark-remove-comments": "1.1.1",
"uuid": "^14.0.0"
},
"overrides": {
"serialize-javascript": ">=7.0.5",
"sockjs": {
"uuid": ">=11.1.1"
}
}
}