-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.14 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
54
55
56
{
"name": "@storyblok/nuxt-2-ws",
"private": true,
"version": "0.0.1",
"workspaces": [
"./lib",
"./playground"
],
"scripts": {
"demo": "npm run demo --workspace=playground",
"build": "npm run build --workspace=lib",
"test:e2e": "npm run test:e2e --workspace=lib",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.25.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nuxt": "^2.17.3",
"prettier": "^3.2.5"
},
"lint-staged": {
"!(plugin)*.{vue,js,css}": [
"prettier --write",
"eslint"
],
"*.md": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended",
"prettier"
],
"rules": {
"vue/multi-word-component-names": 1
}
},
"eslintIgnore": [
"**/templates/plugin.js"
]
}