-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "remote-patient-monitoring-dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"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",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,vue}": "yarn lint",
"*.{css,vue}": "yarn stylelint"
},
"dependencies": {
"@zip.js/zip.js": "2.3.23",
"apexcharts": "3.32.1",
"classlist-polyfill": "1.2.0",
"core-js": "3.19.3",
"dayjs": "1.10.7",
"file-saver": "2.0.5",
"nuxt": "2.15.8",
"nuxt-property-decorator": "2.9.1",
"nuxt-svg-loader": "1.2.0",
"papaparse": "5.3.2",
"promise-polyfill": "8.2.3",
"vee-validate": "3.4.14",
"vue": "2.6.14",
"vue-apexcharts": "1.6.2",
"vuex": "3.6.2",
"vuex-module-decorators": "1.2.0"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/runtime-corejs3": "7.16.8",
"@nuxt/types": "2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/axios": "5.13.6",
"@nuxtjs/eslint-config": "6.0.1",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"@nuxtjs/eslint-module": "3.0.2",
"@nuxtjs/style-resources": "1.2.1",
"@nuxtjs/stylelint-module": "4.1.0",
"@types/file-saver": "2.0.5",
"@types/papaparse": "5.3.2",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.1.7",
"prettier": "2.3.2",
"sass": "1.44.0",
"sass-loader": "10.2.1",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
"ts-loader": "8.3.0",
"typescript": "4.5.4",
"url-loader": "4.1.1"
}
}