-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 773 Bytes
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
{
"name": "aio-web",
"type": "module",
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.22.0",
"@types/bun": "^1.3.9",
"eslint": "^9.22.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "3.5.3",
"typescript-eslint": "^8.26.1"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": [
"packages/*"
],
"dependencies": {},
"scripts": {
"build": "bun run bin/build.ts",
"cleanup": "bun run bin/cleanup.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}