-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"name": "kitzrettung-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "vite --port 5173",
"preview": "vite preview",
"lint-js": "eslint --ignore-path .gitignore .",
"lint-js-fix": "eslint --ignore-path .gitignore . --fix",
"lint-css": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\"",
"lint-css-fix": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\" --fix",
"validate": "npm run lint-css && npm run lint-js",
"fix-linters": "npm run lint-css-fix && npm run lint-js-fix"
},
"dependencies": {
"@vitejs/plugin-react": "^2.0.0",
"react": "^18.2.0",
"react-awesome-slider": "^4.1.0",
"react-countup": "^6.3.0",
"react-dom": "^18.2.0",
"react-pdf": "^5.7.2",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.3.0",
"serve": "^14.0.1",
"vite": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^9.8.8",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.14",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^21.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.21.0",
"tailwindcss": "^3.1.6"
}
}