-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.26 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
{
"name": "4in1crop",
"version": "1.3.0",
"description": "Quickly crop a photo for multiple ratios on the same screen",
"private": true,
"keywords": [
"image cropper",
"crop photo",
"crop tool",
"cropper"
],
"author": "selimdoyranli",
"contributors": [
"Selim Doyranlı <[email protected]> (https://selimdoyranli.com)"
],
"bugs": "[email protected]",
"homepage": "https://4in1crop.com",
"repository": {
"type": "git",
"url": "https://github.com/selimdoyranli/4in1crop"
},
"license": "MIT",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:eslint": "eslint --ext .js,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:eslint:fix": "eslint --fix --ext .js,.vue,.pug --ignore-path .gitignore --ignore-path .eslintignore .",
"lint:stylelint": "stylelint --ignore-path .stylelintignore \"{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}\"",
"lint:stylelint:fix": "stylelint --ignore-path .stylelintignore \"{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}\" --fix",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"**/*.{js,json,css,scss,vue,html,pug}\" --end-of-line crlf",
"commit": "cz",
"changelog": "changelogen"
},
"lint-staged": {
"*.{js,vue}": [
"npm run lint:eslint",
"npm run prettier"
],
"{assets/style,components,layouts,pages}/**/*.{css,sass,scss,less,stylus,vue}": [
"npm run lint:stylelint",
"npm run prettier"
]
},
"dependencies": {
"@nuxtjs/composition-api": "^0.33.1",
"@nuxtjs/i18n": "^7.3.1",
"bootstrap": "5.2.3",
"cross-env": "^5.2.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"nuxt": "2.16.3",
"nuxt-izitoast": "^1.0.0",
"v-dropdown-menu": "^1.3.2",
"vue-advanced-cropper": "^1.11.6",
"vuesax": "^4.0.1-alpha.25"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@iconify/vue2": "^2.1.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/stylelint-module": "^4.1.0",
"@prettier/plugin-pug": "^2.4.1",
"changelogen": "^0.5.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nuxt-font-loader": "1.1.5",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.58.0",
"sass-loader": "10.1.1",
"stylelint": "14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-order": "^6.0.2",
"stylelint-scss": "^4.4.0",
"vue-eslint-parser": "^9.3.0",
"vue-eslint-parser-template-tokenizer-pug": "^0.4.10"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}