-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "root",
"private": true,
"scripts": {
"types": "turbo run types",
"build": "turbo run build",
"test": "turbo run test",
"release": "turbo run release",
"reset-modules": "rm -rf ./**/node_modules"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@swc/core": "^1.2.124",
"@swc/jest": "^0.2.15",
"@tsconfig/node16-strictest": "^1.0.4",
"@types/jest": "^26.0.14",
"@types/node": "^17.0.45",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"parcel": "^2.8.3",
"@biomejs/biome": "^1.0.0",
"turbo": "^1.8.3",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"npx rome format ./packages --write",
"npx rome check ./packages --apply"
]
}
}