-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "sigstore",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" .",
"lint:style": "stylelint \"./**/*.{vue,css,scss}\" .",
"prepare": "husky install",
"lint": "yarn lint:js"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"**/*.{vue}": "stylelint",
"/assets/css/**/*.{scss}": "stylelint --allow-empty-input"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/redirect-module": "^0.3.1",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/svg": "^0.1.12",
"@tailwindcss/typography": "^0.4.1",
"caniuse-lite": "^1.0.30001477",
"core-js": "^3.15.1",
"graphql-tag": "^2.12.5",
"headroom.js": "^0.12.0",
"nuxt": "^2.16.1",
"stylelint-scss": "^3.19.0",
"swiper": "6.x",
"vue-awesome-swiper": "^4.1.1",
"vue-intersect": "^1.1.6",
"vue-intersect-directive": "^1.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.2.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"fibers": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"sass": "^1.35.2",
"sass-loader": "10",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0"
}
}