-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
108 lines (108 loc) · 3.63 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
{
"dependencies": {
"@types/node": "^17.0.18",
"@types/react": "^17.0.38",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-transition-group": "^4.4.4",
"@types/webpack": "^5.28.0",
"@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",
"mobx": "^6.12.3",
"mobx-react": "^9.1.1",
"node-sass": "^7.0.1",
"numfmt": "2.1.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.3",
"react-modal": "^3.14.4",
"react-scripts": "5.0.0",
"react-select": "^5.4.0",
"react-transition-group": "^4.4.2",
"react-use-websocket": "^2.9.1",
"rxjs": "^7.5.2",
"sass": "^1.49.0",
"sass-loader": "^12.6.0",
"source-map-loader": "^3.0.1",
"ssf": "^0.11.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"ts-proto": "^1.104.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "*",
"web-vitals": "^2.1.4",
"webpack": "^5.69.0",
"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",
"@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.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-toastify": "^9.0.5",
"reflect-metadata": "^0.1.13",
"ts-jest": "^27.1.3",
"vitest": "^1.4.0",
"webpack-cli": "^4.9.2"
}
}