-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
112 lines (112 loc) · 3.43 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
{
"name": "@scalprum/source",
"version": "1.0.6",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"nx": "nx",
"prepare": "husky install",
"dev": "node dev-script.js",
"test:unit": "nx run-many -t test",
"test:unit:affected": "nx affected -t test",
"test:e2e": "node e2e-script.js",
"test:component": "nx run-many -t component-test",
"test": "npm-run-all --parallel test:*",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"version": "nx run-many -t version --dryRun",
"postinstall": "rm -rf .webpack-cache"
},
"private": true,
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.19",
"@nx/devkit": "17.1.3",
"@openshift/dynamic-plugin-sdk-webpack": "^4.1.0",
"@swc/helpers": "~0.5.2",
"concurrently": "^8.2.2",
"eslint-plugin-prettier": "^5.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-grid-layout": "^1.4.4",
"react-router-dom": "6.11.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@cypress/webpack-dev-server": "^2.0.0",
"@emotion/babel-plugin": "11.11.0",
"@jscutlery/semver": "^4.1.0",
"@module-federation/enhanced": "^0.2.1",
"@nx/cypress": "17.1.3",
"@nx/eslint": "17.1.3",
"@nx/eslint-plugin": "17.1.3",
"@nx/jest": "17.1.3",
"@nx/js": "17.1.3",
"@nx/plugin": "17.1.3",
"@nx/react": "17.1.3",
"@nx/web": "17.1.3",
"@nx/webpack": "17.1.3",
"@nx/workspace": "17.1.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "~1.6.7",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.85",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "18.14.2",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@types/react-grid-layout": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"babel-jest": "^29.4.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cypress": "^13.0.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"ngx-deploy-npm": "8.0.0",
"npm-run-all": "^4.1.5",
"nx": "17.1.3",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
"replace-json-property": "^1.9.0",
"swc-loader": "^0.2.3",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.2.2",
"url-loader": "^4.1.1",
"verdaccio": "^5.31.1",
"wait-on": "^7.2.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"zod": "^3.22.4"
},
"nx": {
"includedScripts": []
}
}