-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.2 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
108
109
110
{
"name": "health-checker",
"version": "1.0.0",
"private": true,
"description": "Aplikasi identifikasi penyakit anemia",
"keywords": [
"nuxt",
"nuxt pwa",
"nuxt.js",
"nuxtjs",
"vue",
"vue pwa",
"vue ssr",
"vue universal",
"vue.js",
"vuejs",
"vuetify",
"vuetify.js",
"vuetifyjs",
"firebase"
],
"license": "MIT",
"author": "Ridwan Maulana (https://riddev.tech)",
"scripts": {
"build": "nuxt build",
"dev": "nuxt",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "yarn test:unit",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"test:unit": "jest",
"coverage": "codecov",
"build:firebase": "yarn clean && yarn build && yarn copy && cd \"functions\" && yarn",
"clean": "yarn clean:public && yarn clean:functions && yarn clean:static",
"clean:functions": "rimraf \"functions/node_modules\" && rimraf \"functions/.nuxt\"",
"clean:public": "rimraf \"public/**/*.*!(md)\" && rimraf \"public/_nuxt\"",
"clean:static": "rimraf \"src/static/sw.js\"",
"copy": "cpx \"functions/.nuxt/dist/*\" \"public/_nuxt\" && cpx \"src/static/**/*.*!(md)\" \"public\"",
"deploy": "firebase deploy --only functions,hosting",
"start:firebase": "firebase serve --only functions,hosting"
},
"dependencies": {
"@netsells/nuxt-hotjar": "^0.1.3",
"@nuxt/http": "^0.5.11",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^4.3.4",
"@nuxtjs/sitemap": "^2.4.0",
"lru-cache": "^6.0.0",
"nuxt": "^2.14.4",
"vee-validate": "^3.3.0",
"web-streams-polyfill": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/vuetify": "^1.11.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",
"cpx": "^1.5.0",
"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",
"eslint-plugin-vuetify": "^1.0.0-beta.7",
"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",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"vue-jest": "^3.0.6"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.4.1",
"yarn": ">=1.12.1"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"eslint --fix"
]
},
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/R1dwanMaulana/Health-Checker.git"
},
"bugs": {
"url": "https://github.com/R1dwanMaulana/Health-Checker/issues"
},
"homepage": "https://github.com/R1dwanMaulana/Health-Checker#readme"
}