-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
120 lines (120 loc) · 3.6 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
111
112
113
114
115
116
117
118
119
120
{
"name": "fsxa-ui",
"version": "4.2.0",
"license": "Apache-2.0",
"types": "src/types/fsxa-ui.d.ts",
"main": "./dist/fsxa-ui.common.js",
"author": {
"name": "Tobias Golbs",
"email": "[email protected]"
},
"contributors": [
"Dominik Barczewski <[email protected]>"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name fsxa-ui src/index.ts",
"build:local": "rimraf fsxa-ui-*.tgz && npm version prerelease --no-git-tag-version --preid alpha && npm run build && npm pack",
"build:app": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
"prebuild": "rimraf dist",
"precommit": "lint-staged",
"prepush": "npm run test:unit",
"semantic-release": "semantic-release"
},
"dependencies": {
"copy-to-clipboard": "3.3.1",
"iframe-resizer": "^4.3.2",
"lodash.throttle": "4.1.1",
"portal-vue": "2.1.7",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-router": "3.1.6",
"vue-template-compiler": "^2.6.14"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@mdx-js/vue": "^1.6.22",
"@mdx-js/vue-loader": "^1.6.22",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/vue": "^5.0.4",
"@types/googlemaps": "^3.43.3",
"@types/iframe-resizer": "^3.5.9",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.throttle": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.17",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.1.0",
"@vue/test-utils": "1.0.0-beta.31",
"autoprefixer": "^9.8.6",
"babel-plugin-jsx-vue-functional": "^2.1.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.2.2",
"git-cz": "^4.7.6",
"html-loader": "^1.3.2",
"lint-staged": "^9.5.0",
"lodash.kebabcase": "^4.1.1",
"markdown-loader": "^5.1.0",
"postcss-import": "^12.0.1",
"postcss-import-url": "^5.1.0",
"postcss-nested": "^4.2.1",
"prettier": "^1.19.1",
"raw-loader": "^4.0.2",
"semantic-release": "^19.0.3",
"tailwindcss": "^1.9.6",
"typescript": "~4.1.0",
"vue-prismjs": "^1.2.0",
"vue-property-decorator": "^8.4.1",
"vue-tsx-support": "^2.3.3"
},
"files": [
"dist",
"src/types",
"package.json",
"README.md",
"tailwind.config.js"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint"
]
},
"repository": {
"type": "git",
"url": "https://github.com/e-Spirit/fsxa-ui.git"
}
}