-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.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
{
"name": "@ecomplus/admin-marketplace",
"description": "Apps marketplace for E-Com Plus admin with Vue.js SPA",
"version": "2.5.2",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:site": "vue-cli-service build --site",
"lint": "vue-cli-service lint",
"release": "npm run build && commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/admin-marketplace.git"
},
"author": "E-Com Club <ti@e-com.club>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ecomplus/admin-marketplace/issues"
},
"homepage": "https://github.com/ecomplus/admin-marketplace#readme",
"dependencies": {
"@ecomplus/apps-manager": "^1.0.1",
"@ecomplus/auth": "^1.0.1",
"@ecomplus/client": "^2.4.0",
"@ecomplus/i18n": "^1.32.2",
"@ecomplus/utils": "^1.4.1",
"babel-runtime": "^6.26.0",
"bootstrap-vue": "^2.23.1",
"core-js": "^3.39.0",
"dot-object": "^2.1.5",
"lodash.clonedeep": "^4.5.0",
"papaparse": "^5.4.1",
"popper.js": "^1.16.1",
"vue": "2.6.x",
"vue-bootstrap-typeahead": "^0.2.6",
"vue-cleave-component": "^2.1.3",
"vue-markdown": "^2.2.4",
"vue-router": "^3.6.5",
"vue2-transitions": "^0.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-router": "^4.5.19",
"@vue/cli-plugin-vuex": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/eslint-config-standard": "^6.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.20.0",
"husky": "^4.3.8",
"lint-staged": "^11.2.6",
"sass": "^1.83.0",
"sass-loader": "^10.5.2",
"standard": "^17.1.2",
"commit-and-tag-version": "^9.6.0",
"vue-template-compiler": "2.6.x"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
}
}