-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.51 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
{
"name": "dakara-client-web",
"version": "1.10.0-dev",
"description": "Web client for Dakara Project",
"homepage": "https://github.com/DakaraProject/dakara-client-web",
"bugs": {
"url": "https://github.com/DakaraProject/dakara-client-web/issues"
},
"license": "MIT",
"author": "Neraste",
"repository": "github:DakaraProject/dakara-client-web",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --outDir dist/static --base /static",
"test": "vitest",
"bench": "vitest bench",
"lint-js": "eslint . --max-warnings 0",
"lint-css": "stylelint ./src/style/**/*.{css,scss}",
"format": "prettier --write ./src",
"check-format": "prettier --check ./src",
"preview": "vite preview"
},
"pre-commit": [
"test",
"check-format",
"lint-js",
"lint-css"
],
"dependencies": {
"@fontsource/roboto": "^5.3.0",
"classnames": "^2.5.1",
"color-convert": "^3.1.3",
"dayjs": "^1.11.21",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"embla-carousel-wheel-gestures": "^8.1.0",
"line-awesome": "^1.3.0",
"prop-types": "^15.8.1",
"query-string": "^9.4.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-highlight-words": "^0.21.0",
"react-redux": "^9.3.0",
"react-router": "^8.3.0",
"react-transitioning": "^1.0.9",
"redux": "^5.0.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^3.1.0",
"semver": "^7.8.4",
"wcag-contrast-utils": "^1.0.2"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.18.0",
"@eslint/js": "^10.0.1",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.5.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.7.0",
"normalize.css": "^8.0.1",
"postcss": "^8.5.23",
"postcss-input-range": "^6.0.0",
"pre-commit": "^2.0.0",
"prettier": "^3.8.4",
"sass": "^1.101.0",
"stylelint": "^17.13.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-order": "^8.1.1",
"stylelint-prettier": "^5.0.3",
"unplugin-preprocessor-directives": "^1.2.0",
"vite": "^8.0.16",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-checker": "^0.14.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^6.1.0",
"vitest": "^4.1.8"
}
}