-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
43
44
45
46
47
48
{
"name": "qa_board",
"private": true,
"version": "0.2.0",
"description": "Q&A system",
"engine": {
"node": "18",
"npm": "9"
},
"scripts": {
"prepare": "husky install",
"dev": "nuxi dev --spa",
"build": "nuxi generate --spa",
"prettier": "prettier --write \"src/**/*.{js,ts,vue}\"",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcpug/qa_board.git"
},
"author": "sinmetal",
"bugs": {
"url": "https://github.com/gcpug/qa_board/issues"
},
"homepage": "https://github.com/gcpug/qa_board#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@pinia/nuxt": "^0.4.11",
"firebase": "^10.3.1",
"marked": "^9.0.0",
"nuxt": "^3.7.3",
"pinia": "^2.1.6",
"sanitize-html": "^2.11.0"
},
"devDependencies": {
"@types/sanitize-html": "^2.9.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"overrides": {
"vue": "latest"
}
}