-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.45 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
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
{
"name": "knowit-kodekalender-frontend",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
"serve": "concurrently --prefix-colors auto --kill-others yarn:watch-* yarn:vite",
"preview": "vite preview --open --port 8080",
"build": "yarn svgo && vite build",
"lint-check": "eslint --ext .tsx,.ts,.d.ts,.jsx,.js .",
"lint-fix": "eslint --ext .tsx,.ts,.d.ts,.jsx,.js --fix .",
"type-check": "tsc --noEmit",
"format": "prettier 'src/**/*(*.js|*.jsx|*.ts|*.tsx)' --write",
"format-check": "prettier 'src/**/*(*.js|*.jsx|*.ts|*.tsx)' --check",
"check-all": "concurrently --names 'Check ' --prefix-colors auto --group yarn:*-check",
"svgo": "concurrently --names 'SVGO compile ' --prefix-colors auto yarn:svgo-*",
"svgo-icons": "svgo --config svgo_icons.config.cjs --pretty --indent 0 --recursive --folder assets/svg/icons --output assets/svgo/icons",
"watch-svgo-icons": "watch 'yarn svgo-icons' assets/svg/icons",
"svgo-misc": "svgo --config svgo.config.cjs --pretty --indent 0 --recursive --folder assets/svg/misc --exclude Julehus.svg --output assets/svgo/misc",
"watch-svgo-misc": "watch 'yarn svgo-misc' assets/svg/misc",
"svgo-julehus": "svgo --config svgo_julehus.config.cjs --pretty --indent 0 --input assets/svg/julehus/Julehus.svg --output assets/svgo/julehus/Julehus.svg",
"watch-svgo-julehus": "watch 'yarn svgo-julehus' assets/svg/julehus",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/nunito": "^5.0.16",
"@fontsource/twinkle-star": "^5.0.17",
"@headlessui/react": "^1.4.0",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"date-fns": "^2.23.0",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.18.0",
"react-icons": "^4.2.0",
"react-query": "^3.23.2",
"react-router-dom": "^6.19.0",
"react-snowfall": "^2.2.0",
"react-textarea-autosize": "^8.5.3",
"spark-md5": "^3.0.2",
"tailwind-merge": "^2.0.0",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@svgr/rollup": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/jest": "^29.5.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.9.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-router-dom": "^5.1.6",
"@types/spark-md5": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-react": "^4.2.0",
"@whiterussianstudio/tailwind-easing": "^1.0.0",
"autoprefixer": "^10.3.1",
"concurrently": "^9.1.0",
"cssnano": "^6.0.1",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-lodash": "^7.3.0",
"eslint-plugin-react": "^7.25.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^9.1.7",
"postcss": "^8.3.6",
"postcss-100vh-fix": "^1.0.2",
"postcss-cli": "^10.1.0",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.5.7",
"pretty-quick": "^4.0.0",
"rollup-plugin-visualizer": "^5.5.2",
"sass": "^1.38.2",
"tailwind-children": "^0.5.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"watch": "^1.0.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}