-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.07 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.07 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
94
95
96
97
{
"name": "identity-platform-admin-ui",
"version": "0.1.0",
"author": "Canonical Webteam",
"license": "AGPL-3.0",
"type": "module",
"scripts": {
"clean": "rm -rf node_modules yarn-error.log *.log build/ .bundle",
"build": "npx vite build",
"format-js-eslint": "eslint 'src/**/*.{json,jsx,tsx,ts}' --fix",
"format-js-prettier": "prettier 'src/**/*.{json,jsx,tsx,ts}' --write",
"format-js": "yarn format-js-eslint && yarn format-js-prettier",
"lint-scss": "stylelint 'src/**/*.scss'",
"lint-js-eslint": "eslint",
"lint-js-prettier": "prettier 'src/**/*.{json,tsx,ts}' babel.config.js --check",
"lint-js": "yarn lint-js-eslint && yarn lint-js-prettier",
"hooks-add": "husky install",
"hooks-remove": "husky uninstall",
"start": "concurrently --kill-others --raw 'yarn dev-serve' 'yarn proxy-serve'",
"test-js": "vitest",
"dev-serve": "vite --host",
"proxy-serve": "./entrypoint"
},
"dependencies": {
"@canonical/react-components": "3.1.0",
"@canonical/rebac-admin-admin-ui": "0.0.3",
"@tanstack/react-query": "^5.28.6",
"@use-it/event-listener": "0.1.7",
"axios": "1.13.5",
"formik": "2.4.6",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-router": "7.9.1",
"serve": "14.2.5",
"vanilla-framework": "4.34.1",
"yup": "1.7.1"
},
"devDependencies": {
"@babel/core": "7.28.4",
"@babel/eslint-parser": "7.28.4",
"@babel/preset-env": "7.28.3",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.27.1",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.36.0",
"@faker-js/faker": "10.0.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/eslint__eslintrc": "3.3.0",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"@types/react-router": "5.1.20",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "10.4.21",
"axios-mock-adapter": "2.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"concurrently": "9.2.1",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"globals": "16.4.0",
"happy-dom": "18.0.1",
"husky": "9.1.7",
"lint-staged": "16.2.0",
"monaco-editor": "0.53.0",
"postcss": "8.5.6",
"postcss-cli": "11.0.1",
"prettier": "3.6.2",
"sass": "1.93.2",
"stylelint": "16.24.0",
"stylelint-config-standard-scss": "16.0.0",
"stylelint-order": "7.0.0",
"stylelint-prettier": "5.0.3",
"stylelint-scss": "6.12.1",
"typescript": "5.9.2",
"typescript-eslint": "8.44.1",
"vite": "7.1.7",
"vite-plugin-html": "3.2.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"lint-staged": {
"src/**/*.{json,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"tests/**/*.{json,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"src/**/*.scss": "stylelint"
}
}