-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 915 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
{
"name": "@toeverything/abed",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@atomico/hooks": "^3.50.3",
"@blocksuite/block-std": "0.11.0-nightly-202312270506-f0bc780",
"@blocksuite/inline": "0.11.0-nightly-202312270506-f0bc780",
"@blocksuite/store": "0.11.0-nightly-202312270506-f0bc780",
"atomico": "^1.75.1",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"eslint": "^8.56.0",
"lint-staged": "^15.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}