-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
107 lines (107 loc) · 3.03 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "woo-nuxt",
"version": "1.1.0",
"description": "Woocommerce Front-end app with NuxtJS",
"keywords": [
"nuxt.js",
"vuejs",
"nuxtjs",
"woocommerce",
"js"
],
"author": "hau.nguyen",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "npm run build-fragment && nuxt build",
"start": "nuxt start",
"export": "nuxt export",
"generate": "nuxt build && nuxt export",
"serve": "nuxt serve",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{md}": "markdownlint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/components": "^1.1.1",
"@nuxt/content": "^1.10.0",
"@nuxtjs/apollo": "^4.0.1-rc.4",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/toast": "^3.3.1",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"fs": "0.0.1-security",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"gsap": "^3.5.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"nuxt": "^2.14.12",
"nuxt-i18n": "^6.15.4",
"prism-themes": "^1.5.0",
"prismjs": "^1.22.0",
"smooth-scrollbar": "^8.5.3",
"vee-validate": "^3.4.5",
"vue-lazyload": "^1.3.3",
"vue-uuid": "^2.0.2",
"vuex-persistedstate": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@nuxtjs/color-mode": "^2.0.0",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/pwa": "^3.2.2",
"@nuxtjs/router": "^1.5.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/tailwindcss": "^3.2.0",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"husky": "^4.3.6",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"imagemin-svgo": "^8.0.0",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^10.5.1",
"lqip-loader": "^2.2.1",
"node-sass": "^6.0.0",
"prettier": "^2.1.2",
"sass-loader": "^10.1.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"vue-jest": "^3.0.7",
"webp-loader": "^0.6.0"
}
}