-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
120 lines (120 loc) · 3.33 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
{
"name": "rotom",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build": "nx run-many --target=build --configuration=production --all",
"build:client": "nx run --configuration=production client:build",
"build:server": "nx run --configuration=production server:build",
"dev": "nx run-many --target=dev --all",
"dev:client": "nx run client:dev",
"dev:server": "nx run server:dev",
"lint": "nx run-many --target=lint --all",
"prepare": "husky || true",
"prettier": "prettier --write --ignore-unknown 'packages/**/*'",
"start": "node dist/packages/server/main.js",
"dev:mock": "NODE_ENV=development NX_PUBLIC_ENABLE_MOCKS=1 nx run-many --target=dev --all",
"clear-cache": "nx clear-cache"
},
"volta": {
"node": "20.18.1"
},
"engines": {
"node": ">=20.8"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*": [
"prettier --write --ignore-unknown"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "always"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@fastify/http-proxy": "^10.0.1",
"@fastify/static": "^8.0.3",
"@nextui-org/react": "1.0.0-beta.13",
"@swc/helpers": "0.5.15",
"@tanstack/react-query": "^4.0.10",
"bufferutil": "^4.0.6",
"chokidar": "^3.5.3",
"config": "^3.3.12",
"core-js": "^3.6.5",
"fastify": "^5.1.0",
"prom-client": "^14.2.0",
"protobufjs": "^7.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.11.2",
"react-toastify": "^9.0.7",
"regenerator-runtime": "0.13.7",
"tslib": "^2.4.0",
"utf-8-validate": "^5.0.9",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@faker-js/faker": "^7.3.0",
"@nx/eslint": "20.1.1",
"@nx/eslint-plugin": "20.1.1",
"@nx/jest": "20.1.1",
"@nx/js": "20.1.1",
"@nx/node": "20.1.1",
"@nx/react": "20.1.1",
"@nx/web": "20.1.1",
"@nx/webpack": "20.1.1",
"@nx/workspace": "20.1.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@swc/cli": "0.3.14",
"@swc/core": "1.5.7",
"@swc/jest": "0.2.37",
"@types/config": "^0.0.41",
"@types/jest": "29.5.14",
"@types/node": "^18.19.64",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitlint": "^19.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"miragejs": "^0.1.45",
"nx": "20.1.1",
"prettier": "^2.5.1",
"protobufjs-cli": "^1.0.1",
"react-refresh": "^0.14.0",
"ts-jest": "29.1.1",
"ts-node": "9.1.1",
"typescript": "5.5.4"
}
}