-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 903 Bytes
/
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
{
"private": true,
"workspaces": [
"npm",
"web"
],
"scripts": {
"dev": "bun run build && bun --cwd web dev",
"test": "bun --cwd npm test",
"test:watch": "bun --cwd npm test:watch",
"build": "bun --cwd npm build",
"check": "bun --cwd npm check && bun --cwd web check",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@types/bun": "latest",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.0"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"changelog": {
"excludeAuthors": [
]
},
"dependencies": {
"@aklinker1/check": "^1.3.1",
"firebaseui": "^6.1.0",
"nanoid": "^5.0.7",
"panzoom": "^9.4.3",
"standard-version": "^9.5.0",
"vue-tsc": "^2.0.10"
}
}