-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
49
{
"private": true,
"scripts": {
"build": "nuxt build",
"start": "nuxt dev",
"generate": "nuxt generate",
"preview-nuxt": "nuxt preview",
"preview": "sh start.sh",
"postinstall": "nuxt prepare",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"prepare": "husky install",
"test": "vitest",
"start-json-server": "json-server --watch ./Titles.json --host=0.0.0.0 --port 5500",
"deploy": "gh-pages --dotfiles -d .output/public"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"nuxt": "3.0.0",
"prettier": "^2.8.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"@pinia/nuxt": "^0.4.6",
"@vitejs/plugin-vue": "^4.0.0",
"bootstrap": "^5.2.3",
"json-server": "^0.17.3",
"vitest": "^0.27.0"
},
"lint-staged": {
"**/*.{js,ts,vue,html,css}": [
"npm lint-fix"
]
}
}