-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.7 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
{
"name": "schichtkalender-bosch-rt",
"version": "4.0.0",
"description": "Listet alle Kontischichten von Bosch Reutlingen auf.",
"homepage": "https://schichtkalender.app/",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "vite preview",
"lint": "eslint src lib",
"lint:fix": "eslint src lib --fix",
"format": "prettier --write .",
"test": "node --experimental-vm-modules --test --watch --loader ts-node/esm `glob 'test/**/*.{js,ts,jsx,tsx}'`",
"test:ci": "node --experimental-vm-modules --test --loader ts-node/esm `glob 'test/**/*.{js,ts,jsx,tsx}'`",
"e2e": "start-server-and-test dev http://localhost:5173 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:5173 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component",
"update:holidays": "node ./updateHolidays.js",
"prepare": "husky install"
},
"keywords": [],
"license": "MPL",
"author": {
"name": "Christopher Astfalk",
"email": "christopher.astfalk@icloud.com",
"url": "http://christopher-astfalk.de/"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.3",
"@types/milliseconds": "^1.0.0",
"@types/node": "^22.13.0",
"@types/react": "^19.0.8",
"bootstrap-icons": "^1.11.3",
"cypress": "^14.0.1",
"eslint": "^8.57.1",
"eslint-config-preact": "^1.5.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-jest": "^28.11.0",
"glob": "^11.0.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^15.4.3",
"node-ical": "^0.20.1",
"preact-helmet": "^4.0.0-alpha-3",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"prompt": "^1.1.0",
"start-server-and-test": "^2.0.10",
"tailwindcss": "^4.0.0",
"tailwindcss-safe-area": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-pwa": "^0.21.1"
},
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"excel4node": "^1.8.2",
"ics": "^3.8.1",
"milliseconds": "^1.0.3",
"preact": "^10.25.4",
"preact-iso": "^2.8.1",
"preact-render-to-string": "^6.5.13",
"re-reselect": "^5.1.0",
"reselect": "^5.1.1",
"use-view-transitions": "^1.0.16"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}