-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.13 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
{
"name": "@teamstatus/app",
"version": "0.0.0-development",
"description": "Teamstatus.space web application written using Vite and Preact",
"keywords": [
"spa",
"webapp",
"vite",
"preact"
],
"type": "module",
"scripts": {
"prepare": "husky && check-node-version --package && npx tsx --no-warnings openmoji-convert.ts",
"start": "vite",
"build": "node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build --emptyOutDir",
"test": "npx tsx --no-warnings --test --test-reporter spec src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamstatus/app.git"
},
"bugs": {
"url": "https://github.com/teamstatus/app/issues"
},
"homepage": "https://github.com/teamstatus/app#readme",
"author": "Markus Tacker <[email protected]> | coderbyheart.com",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/config-conventional": "19.6.0",
"@nordicsemiconductor/from-env": "3.0.1",
"@playwright/test": "1.48.0",
"@preact/preset-vite": "2.9.3",
"@types/chance": "1.1.6",
"@types/color": "3.0.6",
"@types/lodash-es": "4.17.12",
"bootstrap": "5.3.3",
"chance": "1.1.12",
"check-node-version": "4.2.1",
"commitlint": "19.6.0",
"handlebars": "4.7.8",
"husky": "9.1.7",
"openmoji": "15.0.0",
"prettier": "3.4.2",
"tsmatchers": "5.0.2",
"typescript": "5.7.2",
"vite": "5.4.11",
"wrangler": "3.95.0"
},
"lint-staged": {
"*.{md,yaml,yml,json}": [
"prettier --write"
],
"*.{ts,tsx}": [
"npx biome format --write",
"npx biome check"
]
},
"engines": {
"node": ">=20",
"npm": ">=9"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"dependencies": {
"classnames": "2.5.1",
"color": "4.2.3",
"lodash-es": "4.17.21",
"lucide-preact": "0.468.0",
"micromark": "4.0.1",
"p-throttle": "6.2.0",
"preact": "10.25.1",
"preact-router": "4.1.2",
"tsx": "4.19.2",
"ulid": "2.3.0"
}
}