-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.35 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
{
"name": "joist",
"version": "4.1.0",
"description": "",
"type": "module",
"author": "deebloo",
"license": "MIT",
"workspaces": ["packages/**", "integration/**", "website"],
"scripts": {
"test": "wireit",
"build": "wireit",
"prepare": "husky"
},
"wireit": {
"build": {
"dependencies": [
"./packages/di:build",
"./packages/element:build",
"./packages/observable:build",
"./packages/ssr:build",
"./integration/counter:build",
"./integration/hacker-news:build",
"./integration/templating:build",
"./integration/todo:build"
]
},
"test": {
"dependencies": [
"./packages/di:test",
"./packages/element:test",
"./packages/observable:test",
"./packages/ssr:test",
"./integration/hacker-news:test"
]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.6",
"@web/test-runner": "^0.20.0",
"browser-sync": "^3.0.3",
"chai": "^5.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^11.0.0",
"tslib": "2.8.1",
"typescript": "^5.7.3",
"wireit": "^0.14.0"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}