forked from B2A5/SOSO-Front-End
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "SOSO-Front-End",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{json,md,css}": "prettier --write"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"turbo": "^2.5.4"
}
}