-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.58 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.58 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
{
"name": "inner-circle-auth",
"version": "0.0.1",
"private": true,
"homepage": "/auth",
"scripts": {
"start": "npm run create-config:local && vite --host",
"build": "tsc && vite build",
"docker:build": "docker build -t auth-ui .",
"docker:run": "docker run -p 4455:80 auth-ui",
"docker:build:local-env": "docker build -t my-auth: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",
"cypress:open": "cypress open",
"cypress:open:component": "cypress open --component --browser electron",
"cypress:run:component": "cypress run --component --browser electron",
"cypress:open:e2e": "cypress open --e2e --browser electron --config-file cypress.config.prod.ts",
"cypress:run:e2e": "cypress run --e2e --config-file cypress.config.prod.ts",
"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": {
"@tourmalinecore/react-tc-auth": "^2.2.6",
"axios": "^1.12.2",
"clsx": "^1.2.1",
"history": "^5.3.0",
"mobx": "^6.9.0",
"mobx-react-lite": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.5.0",
"sass": "^1.53.0",
"vite-plugin-svgr": "^4.5.0"
},
"devDependencies": {
"@types/history": "^5.0.0",
"@types/node": "^24.8.1",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^5.0.4",
"cypress": "^14.2.0",
"eslint": "^8.10.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.31.11",
"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"
]
}
}