-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.14 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.14 KB
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": "inner-circle-ui",
"version": "0.0.1",
"private": true,
"homepage": "/employees",
"scripts": {
"start": "npm run create-config:local && vite --host",
"start-local-env": "vite --host --mode local-env",
"build": "tsc && vite build",
"docker:build": "docker build -t inner-circle-ui .",
"docker:run": "docker run -p 4453:80 inner-circle-ui",
"docker:build:local-env": "docker build -t my-employees:0.0.1 .",
"lint": "run-s lint-ts lint-eslint",
"lint-eslint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-ts": "tsc --noEmit",
"preview": "vite preview",
"create-config:local": "node local-config-builder local",
"test": "run-s cypress:run:component",
"cypress:open": "cypress open",
"cypress:open:component": "cypress open --component --browser electron",
"cypress:run:component": "cypress run --component --browser electron",
"cypress:open:e2e:local-env": "cypress open --e2e --browser electron --config-file cypress.config.local-env.ts",
"cypress:run:e2e:local-env": "cypress run --e2e --config-file cypress.config.local-env.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@originjs/vite-plugin-federation": "^1.3.9",
"@tourmalinecore/react-tc-auth": "^2.0.1",
"@types/lodash.isequal": "^4.5.8",
"axios": "^1.1.3",
"clsx": "^2.1.1",
"history": "^5.3.0",
"jwt-decode": "^4.0.0",
"lodash.isequal": "^4.5.0",
"mobx": "^6.8.0",
"mobx-react-lite": "^3.4.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-input-mask": "^2.0.4",
"react-number-format": "^5.4.4",
"react-router-dom": "^6.5.0",
"react-toastify": "^9.0.6",
"sass": "^1.53.0",
"use-react-router-breadcrumbs": "^4.0.1",
"vite-plugin-svgr": "^4.5.0"
},
"devDependencies": {
"@types/history": "^5.0.0",
"@types/jest": "^27.4.1",
"@types/react": "^18.2.56",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^18.2.19",
"@types/react-input-mask": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^5.0.4",
"cypress": "^14.2.0",
"cypress-image-diff-js": "^2.4.0",
"eslint": "^8.10.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.23",
"npm-run-all": "^4.1.5",
"postcss-scss": "4.0.4",
"standard-version": "^9.3.2",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0",
"typescript": "^5.9.3",
"vite": "^7.1.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}