-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
155 lines (155 loc) · 4.4 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
{
"name": "chai",
"private": true,
"version": "0.1.14",
"type": "module",
"scripts": {
"start": "vite --mode CF",
"fetch": "tsx scripts/fetch.ts",
"publish": "bump --tag --commit --push",
"build:BEX": "vite build --mode BEX",
"build:PAGES": "vite build --mode PAGES",
"build:CF": "vite build --mode CF",
"build2": "npm run fetch && npm run build:PAGES",
"build": "npm run fetch && npm run build:CF",
"version": "tsc && npm run build:BEX && npm run build:PAGES && npm run build:CF",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview --mode CF --outDir dist/cf",
"format": "npx prettier . --write && git add .",
"test": "vitest",
"testui": "vitest --ui --coverage",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@ant-design/charts": "^2.1.1",
"@ant-design/colors": "^7.0.2",
"@ant-design/icons": "^5.3.7",
"@ant-design/pro-components": "^2.7.10",
"@antv/s2": "^2.0.0-next.24",
"@antv/s2-react": "^2.0.0-next.23",
"@dagrejs/dagre": "^1.1.3",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/mdx": "^2.0.13",
"ahooks": "^3.8.0",
"antd": "^5.18.3",
"d3-array": "^3.2.4",
"deep-object-diff": "^1.1.9",
"immer": "^10.1.1",
"jotai": "^2.8.4",
"jotai-effect": "^1.0.0",
"jotai-location": "^0.5.5",
"jotai-minidb": "^0.0.8",
"jotai-optics": "^0.4.0",
"js-md5": "^0.8.3",
"js-yaml": "4.1.0",
"libchai": "^0.1.14-alpha.1",
"lodash-es": "^4.17.21",
"mathjs": "^13.0.1",
"nanoid": "^5.0.7",
"optics-ts": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.0",
"reactflow": "^11.11.4",
"styled-components": "^6.1.9",
"use-immer": "^0.10.0"
},
"devDependencies": {
"@emotion/react": "^11.11.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@swc-jotai/react-refresh": "^0.1.1",
"@tailwindcss/typography": "^0.5.13",
"@types/d3-array": "^3.2.1",
"@types/js-md5": "^0.7.2",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-tsdoc": "^0.3.0",
"fs-extra": "^11.2.0",
"jotai-devtools": "^0.10.0",
"postcss": "^8.4.39",
"pre-commit": "^1.2.2",
"prettier": "^3.3.2",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.4",
"tsx": "^4.16.2",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-pages": "^0.32.3",
"vite-plugin-wasm": "^3.3.0",
"vite-plugin-wasm-pack": "^0.1.12",
"vitest": "^1.6.0"
},
"peerDependencies": {
"decimal.js": "^10.4.3"
},
"pre-commit": [
"format"
],
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2020": true
},
"extends": [
"alloy",
"alloy/react",
"alloy/typescript",
"plugin:react-hooks/recommended"
],
"ignorePatterns": [
"dist",
"index.tsx"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"react-refresh",
"eslint-plugin-tsdoc"
],
"rules": {
"max-params": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"react-refresh/only-export-components": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"varsIgnorePattern": "^_"
}
],
"tsdoc/syntax": "warn",
"no-undef": "error",
"no-undefined": "off"
}
},
"hintConfig": {
"extends": [
"development"
],
"hints": {
"typescript-config/is-valid": "off",
"no-inline-styles": "off"
}
}
}