-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
91 lines (91 loc) · 2.15 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
{
"name": "nuxt-pwa-vuetify-starter",
"version": "1.0.0",
"private": true,
"description": "Nuxt.js + PWA + Vuetify.js starter project",
"keywords": [
"nuxt",
"nuxt pwa",
"nuxt.js",
"nuxtjs",
"vue",
"vue pwa",
"vue ssr",
"vue universal",
"vue.js",
"vuejs",
"vuetify",
"vuetify.js",
"vuetifyjs"
],
"homepage": "https://github.com/jefrydco/nuxt-pwa-vuetify-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jefrydco/nuxt-pwa-vuetify-starter"
},
"license": "MIT",
"author": {
"name": "Jefry Dewangga",
"url": "https://jefrydco.id"
},
"scripts": {
"build": "nuxt build",
"coverage": "codecov",
"dev": "nuxt",
"generate": "nuxt generate",
"start": "nuxt start",
"test": "npm run test:unit",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"test:unit": "jest"
},
"dependencies": {
"@nuxt/http": "^0.6.4",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^5.1.6",
"@nuxtjs/sitemap": "^2.4.0",
"lru-cache": "^6.0.0",
"nuxt": "^2.15.8",
"vee-validate": "^3.4.14"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/vuetify": "^1.12.3",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^27.0.0-alpha.4",
"babel-jest": "^27.4.6",
"codecov": "^3.8.3",
"cypress": "^9.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"eslint-plugin-vuetify": "^1.1.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"eslint --fix"
]
}
}