-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (30 loc) · 1.1 KB
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
{
"name": "black-code",
"version": "1.2.0",
"license": "Apache-2.0",
"scripts": {
"tsc:watch": "concurrently -n vscode,core -c magenta,yellow \"npm run tsc:watch:vscode\" \"npm run tsc:watch:core\"",
"tsc:watch:vscode": "tsc --project frontend/tsconfig.json --watch --noEmit --pretty",
"tsc:watch:core": "tsc --project core/tsconfig.json --watch --noEmit --pretty",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.40.0",
"concurrently": "^9.1.2",
"eslint": "^8",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.3"
},
"dependencies": {
"@ai-sdk/deepseek": "^2.0.20"
}
}