-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.26 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.26 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
{
"name": "aikido-exam-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@astrojs/mdx": "3.1.3",
"@astrojs/solid-js": "4.4.0",
"@astrojs/tailwind": "5.1.0",
"@material-design-icons/svg": "0.14.13",
"@nanostores/persistent": "0.10.2",
"@tanstack/solid-table": "8.20.1",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"astro-i18next": "1.0.0-beta.21",
"bootstrap": "5.3.3",
"i18next": "23.12.2",
"lodash": "4.17.21",
"nanostores": "0.11.2",
"solid-js": "1.8.19",
"tailwindcss": "3.4.8",
"typescript": "5.5.4",
"vite-plugin-solid": "2.10.2",
"web-vitals": "4.2.3"
},
"module": "true",
"scripts": {
"start": "vite",
"build": "astro build",
"preview": "astro preview",
"test:lint": "eslint --cache .",
"test:unit": "vitest",
"test:ts": "tsc --project tsconfig.json",
"test": "CI=true run-s test:*",
"dev:unit": "vitest --ui",
"dev:vitest-preview": "vitest-preview",
"dev:ts": "tsc --project tsconfig.json --watch",
"dev:server": "astro dev",
"dev:e2e": "playwright test --ui",
"dev": "run-p dev:*",
"prepare": "husky",
"fetch-youtube-playlists": "vite-node scripts/fetch-youtube-data.mjs > aikido-kompendium-playlists.json",
"postinstall": "node ./scripts/patch-msw-libs.mjs",
"i18n:extract": "astro-i18n extract",
"i18n:generate:pages": "astro-i18n generate:pages --purge",
"i18n:generate:types": "astro-i18n generate:types",
"i18n:sync": "npm run i18n:generate:pages && npm run i18n:generate:types"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@js-temporal/polyfill": "0.4.4",
"@nanostores/solid": "0.4.2",
"@playwright/test": "1.46.0",
"@testing-library/user-event": "14.5.2",
"@types/color": "3.0.6",
"@types/lodash": "4.17.7",
"@types/node": "22.1.0",
"@types/wicg-mediasession": "1.1.8",
"@types/youtube": "0.0.50",
"@types/youtube-player": "5.5.11",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"@vitest/browser": "2.0.5",
"@vitest/expect": "2.0.5",
"@vitest/ui": "2.0.5",
"astro": "4.13.1",
"astro-i18n": "2.2.4",
"autoprefixer": "10.4.20",
"color": "4.2.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-storybook": "0.8.0",
"husky": "9.1.4",
"jsdom": "24.1.1",
"lint-staged": ">=15.2.8",
"msw": "2.3.5",
"nanoid": "5.0.7",
"node-sass": "9.0.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.41",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"sass": "1.77.8",
"solid-testing-library": "0.5.1",
"vite": "5.4.0",
"vite-bundle-visualizer": "1.2.1",
"vite-node": "2.0.5",
"vite-plugin-solid-svg": "0.8.1",
"vitest": "2.0.5",
"vitest-preview": "0.0.1",
"youtube-player": "5.6.0"
},
"lint-staged": {
"*.{ts,tsx,js}": "eslint --cache --fix --max-warnings=0",
"*.{ts,tsx,js,css,md}": "prettier --write",
"src/i18n/common/*.json": "vite-node scripts/sort-translations.ts"
}
}