-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.43 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.43 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
{
"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": {
"classnames": "^2.5.1",
"color-convert": "^3.1.0",
"dayjs": "^1.11.13",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"embla-carousel-wheel-gestures": "^8.0.2",
"prop-types": "^15.8.1",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-highlight-words": "^0.21.0",
"react-redux": "^9.2.0",
"react-router": "^7.12.0",
"react-transitioning": "^1.0.9",
"redux": "^5.0.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^3.1.0",
"semver": "^7.7.1",
"wcag-contrast-utils": "^1.0.1"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"normalize.css": "^8.0.1",
"postcss": "^8.5.3",
"postcss-input-range": "^6.0.0",
"prettier": "3.5.3",
"sass": "^1.85.1",
"stylelint": "^16.0.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-order": "^7.0.0",
"stylelint-prettier": "^5.0.3",
"unplugin-preprocessor-directives": "^1.0.3",
"vite": "^6.4.2",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^6.0.0",
"vitest": "^3.1.2"
}
}