-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.32 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.32 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
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
{
"name": "seatable-plugin-table-relationship",
"private": true,
"dependencies": {
"@types/node": "^16.18.69",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"dtable-ui-component": "6.0.110",
"dtable-utils": "4.3.3",
"html-to-image": "^1.11.11",
"i18next": "^25.7.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "^16.5.8",
"react-icons": "^4.12.0",
"react-intl-universal": "^2.11.1",
"react-select": "^5.8.0",
"reactflow": "^11.11.4",
"reactstrap": "9.2.3",
"sass": "^1.98.0",
"typescript": "5.9.3"
},
"scripts": {
"clean": "rm -rf plugin-zip && mkdir plugin-zip",
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js",
"translate": "node scripts/translate.js",
"push-translate": "tx push -s",
"pull-translate": "tx pull -a -f && npm run translate",
"build-plugin": "export GENERATE_SOURCEMAP=false && npm run clean && npm run format && npm run build && node scripts/build-plugin.js",
"format": "prettier --write .",
"type-check": "tsc"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/runtime": "^7.29.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
"@svgr/webpack": "8.1.0",
"@types/webpack-env": "^1.18.8",
"autoprefixer": "10.4.5",
"babel-loader": "^8.4.1",
"babel-plugin-import": "^1.13.6",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.1.0",
"browserslist": "^4.28.1",
"camelcase": "^6.2.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^3.2.0",
"dayjs": "^1.11.20",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"dtable-sdk": "^5.0.14",
"eslint": "^8.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"jszip": "^3.8.0",
"mini-css-extract-plugin": "^2.10.1",
"node-polyfill-webpack-plugin": "2.0.1",
"postcss": "^8.5.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.0.1",
"prettier": "^3.8.1",
"process": "^0.11.10",
"prompts": "^2.4.2",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.11.0",
"resolve": "^1.22.11",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.6.0",
"semver": "^7.7.4",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.4.0",
"webpack": "^5.105.4",
"webpack-dev-server": "^4.6.0",
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
},
"overrides": {
"serialize-javascript": "^7.0.3",
"postcss": "^8.5.8"
},
"prettier": "./prettier.config.json"
}