-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.32 KB
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
{
"name": "helloware-console",
"version": "0.3.2",
"description": "Helloware Admin Dashboard",
"bugs": {
"url": "git@github.com:Helloware-io/admin/issues",
"email": "bugs@arpitpatidar.com"
},
"license": "UNLICENSED",
"author": {
"name": "Arpit Patidar",
"email": "arpit.ptdr@hotmail.com",
"url": "https://arpitpatidar.com"
},
"repository": {
"type": "git",
"url": "git@github.com:Helloware-io/admin.git"
},
"scripts": {
"prepare": "husky install",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"format": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.{css,scss,sass,html,vue}": "stylelint",
"*.**": "prettier --check --ignore-unknown"
},
"dependencies": {
"@nuxtjs/auth-next": "latest",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.31.0",
"nuxt": "^2.15.8",
"nuxt-tailvue": "^1.0.95",
"vuelidate": "^0.7.7"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^8.0.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/stylelint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^5.0.0-3",
"@types/vuelidate": "^0.7.15",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"nuxt-storm": "^1.1.3",
"postcss": "^8.4.6",
"postcss-html": "^1.3.0",
"prettier": "^2.5.1",
"stylelint": "^14.4.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^25.0.0"
},
"resolutions": {
"jimp-compact": "^0.16.1"
},
"engines": {
"node": ">= 14.0.0",
"npm": "^6.14.12"
},
"private": true
}