forked from UnownHash/Rotom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.75 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
{
"name": "rotom",
"version": "1.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",
"start": "node dist/packages/server/main.js",
"dev:mock": "NODE_ENV=development NX_ENABLE_MOCKS=1 nx run-many --target=dev --all",
"clear-cache": "nx clear-cache"
},
"volta": {
"node": "18.18.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "always"
},
"dependencies": {
"@fastify/http-proxy": "^8.2.1",
"@fastify/static": "^6.4.0",
"@nextui-org/react": "1.0.0-beta.13",
"@swc/helpers": "0.5.3",
"@tanstack/react-query": "^4.0.10",
"bufferutil": "^4.0.6",
"chokidar": "^3.5.3",
"config": "^3.3.7",
"core-js": "^3.6.5",
"fastify": "^4.2.0",
"prom-client": "^14.2.0",
"protobufjs": "^7.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"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.5.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@nx/eslint": "17.0.2",
"@nx/eslint-plugin": "17.0.2",
"@nx/jest": "17.0.2",
"@nx/js": "17.0.2",
"@nx/node": "17.0.2",
"@nx/react": "17.0.2",
"@nx/web": "17.0.2",
"@nx/webpack": "^17.0.2",
"@nx/workspace": "17.0.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.95",
"@swc/jest": "0.2.20",
"@types/config": "^0.0.41",
"@types/jest": "29.4.4",
"@types/node": "18.14.2",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.5.0",
"jest": "29.4.3",
"jest-environment-jsdom": "28.1.3",
"miragejs": "^0.1.45",
"nx": "17.0.2",
"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.3.2"
}
}