forked from codeforjapan/remote-patient-monitoring-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.64 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
{
"name": "remote-patient-monitoring-client",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix",
"stylelint": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"stylelint:fix": "yarn stylelint --fix",
"test:unit": "jest",
"prepare": "husky install"
},
"dependencies": {
"apexcharts": "3.25.0",
"axios": "0.21.1",
"core-js": "3.9.1",
"dayjs": "1.10.4",
"register-service-worker": "1.7.2",
"vee-validate": "3.4.5",
"vue": "2.6.12",
"vue-apexcharts": "1.6.0",
"vue-class-component": "7.2.6",
"vue-property-decorator": "9.1.2",
"vue-router": "3.5.1",
"vuex": "3.6.2",
"vuex-class": "0.3.2",
"vuex-module-decorators": "1.0.1",
"vuex-type-helper": "1.3.1"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/sinon": "9.0.10",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"@vue/cli-plugin-babel": "4.5.11",
"@vue/cli-plugin-eslint": "4.5.11",
"@vue/cli-plugin-pwa": "4.5.11",
"@vue/cli-plugin-router": "4.5.11",
"@vue/cli-plugin-typescript": "4.5.11",
"@vue/cli-plugin-vuex": "4.5.11",
"@vue/cli-service": "4.5.11",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/test-utils": "1.1.3",
"babel-core": "7.0.0-bridge.0",
"eslint": "7.21.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-vue": "7.6.0",
"husky": "5.1.3",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"node-sass": "4.14.1",
"prettier": "2.2.1",
"sass-loader": "8.0.2",
"sinon": "9.2.4",
"stylelint": "13.11.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"ts-jest": "26.5.2",
"typescript": "3.9.9",
"vue-jest": "3.0.7",
"vue-loader": "15.9.6",
"vue-svg-loader": "0.17.0-beta.2",
"vue-template-compiler": "2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testURL": "http://localhost/"
}
}