-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 3.91 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
{
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@types/node": "^18",
"@types/react": "^19",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^19",
"@types/react-modal": "^3.16.3",
"@types/react-transition-group": "^4.4.4",
"@types/webpack-dev-server": "^4.7.2",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"ahooks": "^3.7.11",
"antd": "^5.8.3",
"craco-plugin-scoped-css": "^1.1.1",
"css-loader": "^6.6.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"logisheets-web": "workspace:*",
"mobx": "^6.12.3",
"mobx-react": "^9.1.1",
"numfmt": "2.1.0",
"react": "^19",
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
"react-dom": "^19",
"react-i18next": "^11.18.3",
"react-modal": "^3.16.3",
"react-scripts": "5.0.0",
"react-select": "^5.4.0",
"react-toastify": "^11.0.2",
"react-transition-group": "^4.4.2",
"rxjs": "^7.8.1",
"source-map-loader": "^3.0.1",
"ssf": "^0.11.2",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"ts-proto": "^1.104.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"web-vitals": "^2.1.4",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"test": "vitest run",
"run-scripts": "ts-node scripts/index.ts",
"start:react": "react-scripts start",
"start:dev": "webpack serve --config=webpack.config.ts --hot --env=dev",
"start:wasm": "yarn run run-scripts && yarn run wasm && webpack serve --config=webpack.config.ts --hot --env=dev --env=stand-alone",
"wasm": "yarn run wasm:server && yarn run wasm:fc",
"wasm:server": "wasm-pack build crates/wasms/server --out-dir ../../../packages/web/wasm --target web",
"wasm:fc": "wasm-pack build crates/wasms/fc --out-dir pkg --target web",
"start": "yarn run start:wasm",
"build": "webpack build --config=webpack.config.ts",
"protoc": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=src/proto --ts_proto_opt=esModuleInterop=tru --ts_proto_opt=oneof=unions --proto_path=protocols protocols/message.proto",
"lint": "eslint . -c .eslintrc.json --fix",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.17.1",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"enzyme": "^3.11.0",
"esbuild-loader": "^2.18.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.1",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"glob": "^8.0.3",
"husky": "^8.0.1",
"i18next": "^21.8.16",
"i18next-browser-languagedetector": "^6.1.4",
"inversify": "^6.2.0",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"ts-jest": "^27.1.3",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"vitest": "^1.4.0",
"webpack": "^5.97.1",
"webpack-cli": "^4.9.2",
"worker-loader": "^3.0.8"
},
"packageManager": "yarn@4.5.3",
"peerDependencies": {
"ts-loader": "*",
"typescript": "*"
}
}