-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
50
51
52
53
{
"name": "checklyhq.com-nuxt3",
"description": "checklyhq.com rewrite with Nuxt3",
"license": "MIT",
"author": "ndom91 <[email protected]>",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview"
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^5.0.3",
"eslint": "^8.14.0",
"eslint-plugin-vue": "^8.7.1",
"nuxt": "3.0.0-rc.1",
"prettier": "^2.6.2",
"simple-git-hooks": "^2.7.0",
"vite-svg-loader": "^3.3.0",
"vue-eslint-parser": "^8.3.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write"
]
},
"dependencies": {
"prismjs": "^1.28.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0"
},
"eslintConfig": {
"parser": "vue-eslint-parser",
"extends": [
"plugin:vue/base"
],
"rules": {
"no-unused-vars": [
"off"
],
"@typescript-eslint/no-unused-vars": [
"off"
]
}
}
}