-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4.14 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
{
"name": "clbox",
"version": "0.0.0",
"license": "AGPL 3.0",
"scripts": {
"nx": "nx",
"start": "NX_PUBLIC_APP_VERSION=$(git log -n 1 --pretty=format:'%H') nx serve",
"build": "NX_PUBLIC_APP_VERSION=$(git log -n 1 --pretty=format:'%H') nx build --prod",
"test": "nx test",
"lint": "nx workspace-lint && nx lint",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"build:web-app": "NX_PUBLIC_APP_VERSION=$(git log -n 1 --pretty=format:'%H') nx build --prod --project web-app",
"build:backend": "nx build --prod --project backend",
"workspace-generator": "nx workspace-generator"
},
"private": true,
"dependencies": {
"@dotenvx/dotenvx": "^1.7.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@google-cloud/pubsub": "2.7.0",
"@mui/icons-material": "^5.16.6",
"@mui/material": "^5.16.6",
"@nx/react": "19.5.6",
"@reduxjs/toolkit": "^2.2.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"axios": "^1.6.0",
"core-js": "^3.30.2",
"document-register-element": "1.14.10",
"firebase": "^9.22.0",
"firebase-admin": "11.8.0",
"firebase-functions": "^4.6.0",
"node-fetch": "2.7.0",
"raw-body": "2.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"react-router-dom": "6.11.2",
"redux-observable": "^3.0.0-rc.2",
"remark-gfm": "4.0.0",
"rxjs": "^7.8.1",
"styled-components": "5.3.6",
"tslib": "^2.3.0",
"uuid": "10.0.0",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "7.12.7",
"@nrwl/js": "19.5.6",
"@nrwl/linter": "19.5.6",
"@nrwl/webpack": "19.5.6",
"@nx/eslint-plugin": "19.5.6",
"@nx/jest": "19.5.6",
"@nx/js": "19.5.6",
"@nx/node": "19.5.6",
"@nx/web": "19.5.6",
"@nx/webpack": "19.5.6",
"@nx/workspace": "19.5.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "8.1.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "29.5.12",
"@types/node": "22.1.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-is": "18.3.0",
"@types/styled-components": "5.1.34",
"babel-jest": "29.4.3",
"babel-plugin-styled-components": "2.1.3",
"css-loader": "^6.4.0",
"dotenv": "10.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"generate-package-json-webpack-plugin": "2.1.2",
"jest": "29.4.3",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"nx": "19.5.6",
"prettier": "2.8.8",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.0",
"stylus": "0.59.0",
"stylus-loader": "^7.1.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "5.5.4",
"url-loader": "^4.1.1",
"webpack": "5.91.0",
"webpack-merge": "^5.8.0"
},
"volta": {
"node": "16.19.1"
}
}