-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "dicemaster",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt",
"generate": "nuxt generate",
"lint:scripts": "eslint '**/*.{js,ts,vue}' --fix --ignore-pattern .gitignore --ignore-pattern 'static/**'",
"start": "nuxt start",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,vue}": [
"stylelint --fix"
],
"*.{js,ts,vue}": [
"eslint --fix"
],
"package.json": [
"prettier --write"
]
},
"prettier": {
"htmlWhitespaceSensitivity": "ignore",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@nuxtjs/pwa": "3.3.5",
"core-js": "3.11.1",
"nuxt": "2.15.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.0",
"@changesets/cli": "2.16.0",
"@nuxt/types": "2.15.4",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/eslint-config-typescript": "6.0.0",
"@nuxtjs/tailwindcss": "4.0.3",
"@vue/test-utils": "1.2.0",
"@zazen/eslint-config": "2.3.0",
"@zazen/stylelint-config": "2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"cross-env": "7.0.3",
"eslint": "7.25.0",
"eslint-plugin-vue": "7.9.0",
"husky": "4.3.8",
"import-sort-style-python": "1.0.2",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"postcss": "8.2.13",
"prettier": "2.2.1",
"prettier-plugin-import-sort": "0.0.6",
"prettier-plugin-packagejson": "2.2.10",
"stylelint": "13.13.1",
"tailwindcss-capsize": "1.2.2",
"ts-jest": "26.5.5",
"vue-jest": "3.0.7"
},
"importSort": {
".js,.ts,.vue": {
"parser": "babylon",
"style": "python",
"options": {
"knownFramework": [
"@nuxt",
"nuxt",
"@vue",
"vue"
],
"knownFirstparty": [
"~"
]
}
}
}
}