-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.64 KB
/
package.json
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
{
"name": "klo-meister",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://born3am.github.io/klo-meister/",
"description": "Check out here what do you should do to handle a bathroom visit in Germany.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/born3am/klo-meister.git"
},
"author": "born3am",
"license": "ISC",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint -c eslint.config.js --cache .",
"lint:fix": "npm run lint -- --no-cache --fix",
"prettier": "prettier --check --cache --no-error-on-unmatched-pattern '**/*.md' '**/*.yml' '**/*.json' '**/*.html' '**/*.css' '**/*.scss' '**/*.sass' '**/*.less'",
"prettier:fix": "npm run prettier -- --no-cache --write",
"fix": "npm run prettier:fix ; npm run lint:fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.4",
"bootstrap": "^5.1.3",
"react": "^19.0.0",
"react-bootstrap": "^2.0.3",
"react-dom": "^19.0.0",
"react-router": "^7.0.2"
},
"devDependencies": {
"@born3am/eslint-config": "^1.1.1",
"@born3am/prettier-config": "^1.0.1",
"gh-pages": "^6.2.0",
"vite": "^6.0.2"
}
}