-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "ckb-academy",
"private": true,
"workspaces": [
"site",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev:site": "turbo run dev --filter site",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write --ignore-path .gitignore '{packages,site}/**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-solid": "0.12.1",
"prettier": "^2.8.4",
"turbo": "latest"
},
"packageManager": "[email protected]",
"dependencies": {
"husky": "^8.0.3"
}
}