-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.1 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
{
"name": "mage-wizard",
"description": "Web UI wizard for Magento 2 providing useful features: module creation, config management, etc.",
"version": "0.2.19",
"bin": {
"mage-wizard": "dist/server/index.mjs"
},
"author": {
"name": "Michael Bouvy",
"email": "michael.bouvy@clickandmortar.fr",
"url": "https://www.clickandmortar.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/ClickAndMortar/mage-wizard"
},
"homepage": "https://github.com/ClickAndMortar/mage-wizard",
"license": "MIT",
"keywords": [
"magento",
"wizard",
"adobe",
"commerce"
],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "npm run lint:js",
"lint:js": "NODE_ENV=production eslint --ext .ts,.js,.vue .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"release": "commit-and-tag-version"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@prettier/plugin-php": "^0.20.1",
"@types/luxon": "^3.3.2",
"@types/minimist": "^1.2.2",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"nuxt": "^3.11.2",
"prettier": "^3.0.3",
"typescript": "^5.4.5",
"vitepress": "^1.1.4"
},
"dependencies": {
"@mdi/font": "^7.2.96",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.198",
"cronstrue": "^2.50.0",
"defu": "^6.1.2",
"fast-glob": "^3.3.1",
"fast-xml-parser": "^4.2.7",
"handlebars": "^4.7.8",
"jsonpath": "^1.1.1",
"jsonpath-plus": "^7.2.0",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"minimist": "^1.2.8",
"node-cache": "^5.1.2",
"php-parser": "^3.1.5",
"sass": "^1.66.1",
"semver": "^7.6.0",
"sync-disk-cache": "^2.1.0",
"vuetify": "^3.3.11"
}
}