-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·113 lines (113 loc) · 2.73 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": "staff-clock-in-out-system",
"author": "Asefon Michael Pelumi",
"description": "Staff Review System",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"dev": "npm run serve",
"app:test": "jest --silent || exit 0",
"app:test:clear": "jest --clearCache"
},
"dependencies": {
"axios": "^0.21.0",
"bootstrap": "4.3.1",
"bootstrap-vue": "^2.5.0",
"chart.js": "^2.9.3",
"crypto-js": "^4.0.0",
"d3": "^5.7.0",
"datamaps": "^0.5.9",
"date-fns": "^1.30.1",
"dropzone": "^5.5.1",
"element-ui": "2.4.11",
"es6-promise": "^4.1.1",
"flatpickr": "^4.5.7",
"fuse.js": "^3.2.0",
"google-maps": "^3.2.1",
"nouislider": "^12.1.0",
"perfect-scrollbar": "^1.3.0",
"quill": "^1.3.6",
"sweetalert2": "^9.5.4",
"vee-validate": "^3.2.1",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.0",
"vue-clipboard2": "^0.3.0",
"vue-flatpickr-component": "^8.1.2",
"vue-router": "^3.0.6",
"vue2-transitions": "^0.2.3",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"babel-plugin-component": "^1.1.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.11",
"@vue/server-test-utils": "^1.0.3",
"@vue/test-utils": "^1.0.3",
"@vue/compiler-sfc": "^3.0.0-0",
"jest": "^25.5.4",
"jest-html-reporters": "^1.2.1",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"vue-jest": "^3.0.5"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/src/tests"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**"
],
"coverageReporters": [
"html",
"text-summary"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/mixins",
"<rootDir>/src/utils",
"<rootDir>/src/shared",
"<rootDir>/src/layout",
"<rootDir>/src/home"
],
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./test-report",
"filename": "report.html",
"expand": true
}
]
],
"preset": "@vue/cli-plugin-unit-jest"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}