-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.21 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.21 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"scripts": {
"lint-js": "eslint static/js",
"lint-a11y": "eslint -c eslint-a11y.config.js static/js",
"lint-scss": "stylelint static/**/*.scss",
"lint-python": "flake8 webapp tests && black --diff --check --line-length 79 webapp tests",
"test": "yarn run test-python && yarn run test-js-all && yarn run lint-scss",
"test-e2e": "cypress run --quiet",
"test-js": "vitest run",
"test-js-all": "yarn run lint-js && yarn run test-js",
"test-python": "yarn run lint-python && FLASK_DEBUG=0 python3 -m unittest discover tests",
"test-python-job": "SECRET_KEY=insecure_secret_key coverage run --source=. -m unittest discover tests",
"build": "yarn run vite build",
"serve": "./entrypoint 0.0.0.0:${PORT}",
"start": "concurrently --raw 'yarn run watch' 'yarn run serve'",
"watch": "vite",
"clean": "rm -rf node_modules yarn-error.log css static/js/dist static/js/modules static/css *.log *.sqlite _site/ build/ .jekyll-metadata .bundle cache.tmp",
"percy": "node_modules/.bin/percy snapshot snapshots.yml"
},
"author": "Canonical webteam",
"license": "LGPL-3.0-or-later",
"dependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@canonical/analytics-events": "1.0.5",
"@canonical/cookie-policy": "3.10.0",
"@canonical/global-nav": "3.8.0",
"@canonical/react-components": "4.0.1",
"@canonical/store-components": "0.55.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@sentry/browser": "10.38.0",
"@sentry/react": "10.38.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/randomstring": "1.3.0",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"@types/react-redux": "7.1.34",
"@types/topojson-client": "3.1.5",
"@vitejs/plugin-react-swc": "4.2.3",
"@vitest/eslint-plugin": "1.6.9",
"autoprefixer": "10.4.24",
"d3": "7.9.0",
"d3-array": "3.2.4",
"d3-axis": "3.0.0",
"d3-fetch": "3.0.1",
"d3-format": "3.1.2",
"d3-geo": "3.1.1",
"d3-scale": "4.0.2",
"d3-scale-chromatic": "3.1.0",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"d3-time-format": "4.1.0",
"date-fns": "4.1.0",
"downshift": "9.2.0",
"jotai": "2.17.1",
"jotai-family": "1.0.1",
"nanoid": "5.1.6",
"postcss": "8.5.6",
"postcss-cli": "11.0.1",
"prettier": "3.8.1",
"prop-types": "15.8.1",
"randomstring": "1.3.1",
"react": "19.2.4",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "19.2.4",
"react-hook-form": "7.71.1",
"react-joyride": "3.0.0-7",
"react-query": "3.39.3",
"react-redux": "9.2.0",
"react-router-dom": "7.13.0",
"react-sortable-hoc": "2.0.0",
"redux": "5.0.1",
"redux-mock-store": "1.5.5",
"redux-thunk": "3.1.0",
"sass-embedded": "1.97.3",
"swiper": "12.1.2",
"tinyglobby": "0.2.15",
"topojson-client": "3.1.0",
"typescript": "5.9.3",
"uuid": "13.0.0",
"vanilla-framework": "4.46.0",
"vite": "7.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"@percy/cli": "1.31.10",
"@types/cypress": "1.1.6",
"@types/d3": "7.4.3",
"@types/redux-mock-store": "^1.5.0",
"@types/uuid": "11.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "4.1.3",
"@vitest/ui": "4.1.3",
"concurrently": "9.2.1",
"cypress": "15.10.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"msw": "2.12.8",
"stylelint": "17.6.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-order": "7.0.1",
"vitest": "4.1.3"
},
"resolutions": {
"vitest/**/glob": "13.0.1",
"vitest/vite": "7.3.2",
"lodash": "4.18.1",
"picomatch": ">=2.3.2",
"brace-expansion": ">=2.0.2",
"@tootallnate/once": "3.0.1"
}
}