-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.49 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
{
"name": "nuxt-pwa-tailwindcss",
"version": "1.0.0",
"private": true,
"description": "Nuxt.js + PWA + TailwindCSS starter project",
"keywords": [
"nuxt",
"nuxt pwa",
"nuxt.js",
"nuxtjs",
"vue",
"vue pwa",
"vue ssr",
"vue universal",
"vue.js",
"vuejs",
"tailwind",
"tailwindcss"
],
"homepage": "https://github.com/jefrydco/nuxt-pwa-tailwindcss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jefrydco/nuxt-pwa-tailwindcss"
},
"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.5.11",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.0.2",
"@nuxtjs/sentry": "^4.3.4",
"@nuxtjs/sitemap": "^2.4.0",
"nuxt": "^2.14.4",
"vee-validate": "^3.3.9"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^3.0.2",
"@vue/test-utils": "^1.0.4",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"cypress": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.2.13",
"postcss-nested": "^4.2.3",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"vue-jest": "^3.0.6"
},
"engines": {
"node": ">=8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix"
]
}
}