This repository was archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.32 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.32 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "simlar-homepage",
"version": "0.1.0",
"private": true,
"prettier": {
"parser": "vue"
},
"scripts": {
"commit": "npx git-cz",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"format:write": "prettier --write \"src/**/*.vue\" --parser vue && prettier --write \"src/**/*.{ts,js}\" --parser typescript"
},
"dependencies": {
"vue": "2.6.10",
"vue-class-component": "7.1.0",
"vue-property-decorator": "8.2.1",
"vue-router": "3.0.7"
},
"devDependencies": {
"@types/jest": "24.0.15",
"@vue/cli-plugin-e2e-cypress": "4.5.4",
"@vue/cli-plugin-typescript": "4.5.4",
"@vue/cli-plugin-unit-jest": "4.5.4",
"@vue/cli-service": "4.5.4",
"@vue/test-utils": "1.0.0-beta.29",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.0.2",
"husky": "4.3.8",
"lodash": "4.17.21",
"node-sass": "4.13.1",
"prettier": "2.1.2",
"sass-loader": "7.1.0",
"ts-jest": "24.0.2",
"typescript": "3.5.3",
"vue-template-compiler": "2.6.10"
},
"renovate": {
"extends": [
"config:base"
],
"reviewers": [
"mehrad-rafigh"
]
},
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue",
"ts",
"tsx"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.tsx?$": "ts-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"
]
}
}