-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
129 lines (129 loc) · 3.12 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
121
122
123
124
125
126
127
128
129
{
"name": "dashblocks-template",
"version": "0.5.4",
"private": true,
"author": "https://github.com/sv2",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"release": "release-it",
"release-ci": "release-it --ci"
},
"dependencies": {
"@quasar/extras": "^1.8.2",
"core-js": "^3.6.5",
"quasar": "^1.12.3",
"vue": "^2.6.11",
"vue-router": "^3.3.2",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-e2e-cypress": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"babel-plugin-transform-imports": "1.5.0",
"dashblocks": "^0.5.35",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^8.1.5",
"node-sass": "^4.13.1",
"release-it": "^13.5.4",
"sass-loader": "^8.0.2",
"vue-cli-plugin-quasar": "^2.0.0",
"vue-template-compiler": "^2.6.11",
"webpack-bundle-analyzer": "^3.6.0",
"ramda": "^0.27.0",
"vue-good-table": "^2.18.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"bugs": {
"url": "https://github.com/slanatech/dashblocks-template/issues",
"email": "[email protected]"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/slanatech/dashblocks-template",
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"release-it": {
"github": {
"release": true
},
"hooks": {
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
},
"repository": {
"type": "git",
"url": "https://github.com/slanatech/dashblocks-template"
}
}