-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.08 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.08 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
{
"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.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@canonical/cookie-policy": "3.6.5",
"@canonical/global-nav": "3.8.0",
"@canonical/react-components": "3.6.0",
"@canonical/store-components": "0.55.0",
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "8.0.0",
"@dnd-kit/utilities": "3.2.2",
"@sentry/browser": "10.12.0",
"@sentry/react": "7.120.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.5.2",
"@types/randomstring": "1.3.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react-redux": "7.1.34",
"@types/topojson-client": "3.1.5",
"@vitejs/plugin-react-swc": "4.0.0",
"@vitest/eslint-plugin": "^1.3.9",
"autoprefixer": "10.4.20",
"d3": "7.9.0",
"d3-array": "3.2.4",
"d3-axis": "3.0.0",
"d3-fetch": "3.0.1",
"d3-format": "3.1.0",
"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.0.8",
"jotai": "2.12.5",
"nanoid": "5.0.9",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"prettier": "3.4.2",
"prop-types": "15.8.1",
"randomstring": "1.3.0",
"react": "19.1.0",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "19.1.0",
"react-hook-form": "7.54.2",
"react-joyride": "3.0.0-7",
"react-query": "3.39.3",
"react-redux": "8.1.3",
"react-router-dom": "7.5.2",
"react-sortable-hoc": "2.0.0",
"redux": "4.2.1",
"redux-mock-store": "1.5.5",
"redux-thunk": "2.4.2",
"sass-embedded": "1.93.2",
"swiper": "11.2.0",
"topojson-client": "3.1.0",
"typescript": "5.3.3",
"uuid": "11.0.4",
"vanilla-framework": "4.35.0",
"vite": "7.1.11"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@percy/cli": "1.30.6",
"@types/cypress": "1.1.6",
"@types/d3": "7.4.3",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"concurrently": "9.1.2",
"cypress": "14.5.4",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"msw": "2.7.0",
"stylelint": "16.12.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-order": "6.0.4",
"vitest": "^3.2.4"
},
"resolutions": {
"lodash": "4.17.21",
"eslint/**/minimatch": "3.1.2",
"eslint-*/minimatch": "3.1.2",
"@typescript-eslint/**/minimatch": "9.0.5",
"@vitest/coverage-v8/**/minimatch": "9.0.5"
}
}