This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.76 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
{
"name": "@vatsim-uk/consilio",
"version": "0.3.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "vue-cli-service build",
"playground": "vue-cli-service serve src/playground.ts",
"test:unit": "vue-cli-service test:unit --coverage",
"lint": "vue-cli-service lint",
"build:lib": "vue-cli-service build --target lib --name consilio src/main.ts",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"commit": "git-cz"
},
"main": "./dist/consilio.common.js",
"dependencies": {
"@vue/eslint-config-prettier": "^6.0.0",
"autoprefixer": "latest",
"conventional-changelog-cli": "^2.0.34",
"core-js": "^3.3.2",
"eslint-plugin-prettier": "^3.1.3",
"node-sass": "^4.13.0",
"postcss": "^7.0.21",
"sass-loader": "^8.0.0",
"tailwindcss": "^1.8.10",
"vue": "^2.6.10",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^4.0.0",
"@vue/cli-plugin-typescript": "^4.0.5",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"cz-conventional-changelog": "3.2.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^4.2.5",
"postcss-loader": "^3.0.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "~3.5.3",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"@vue/prettier",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"files": [
"dist/*",
"tailwind.config.js"
],
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"bracketSpacing": true,
"requirePragma": false,
"printWidth": 80,
"semi": false,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"vueIndentScriptAndStyle": true
}
}