-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
43
44
45
46
{
"name": "talos-ark",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "AGPL-3.0",
"author": "Maiturin",
"description": "璇玑云库(TalosArk) - 生物样本储存管理系统",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"vue-eslint-parser": "^10.4.0"
},
"lint-staged": {
"apps/backend/**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"apps/frontend/**/*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,yaml,yml,css,scss,html}": [
"prettier --write"
]
}
}