2020-05-04 04:31:12 +00:00
|
|
|
{
|
|
|
|
"name": "frequi",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-05-24 13:25:48 +00:00
|
|
|
"serve": "vite",
|
|
|
|
"dev": "vite",
|
2022-05-01 17:21:01 +00:00
|
|
|
"build": "vite build",
|
2021-05-24 13:25:48 +00:00
|
|
|
"test:unit": "jest",
|
2022-04-27 04:53:45 +00:00
|
|
|
"check-types": "vue-tsc --noEmit",
|
2021-11-14 10:11:52 +00:00
|
|
|
"lint": "eslint --ext .ts,vue src tests",
|
|
|
|
"lint-ci": "eslint --no-fix --ext .ts,vue src tests",
|
2021-12-18 10:16:15 +00:00
|
|
|
"cy:open": "cypress open",
|
2022-01-05 19:34:20 +00:00
|
|
|
"cy:run": "cypress run",
|
2021-12-18 10:16:15 +00:00
|
|
|
"cy:open-ct": "cypress open-ct",
|
2022-06-08 18:49:19 +00:00
|
|
|
"cy:run-ct": "cypress run --component"
|
2020-05-04 04:31:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-05-25 05:06:16 +00:00
|
|
|
"@vue/composition-api": "^1.6.2",
|
2022-05-04 05:02:20 +00:00
|
|
|
"axios": "^0.27.2",
|
2021-01-25 08:30:17 +00:00
|
|
|
"bootstrap": "^4.6.0",
|
2022-04-20 06:00:09 +00:00
|
|
|
"bootstrap-vue": "^2.22.0",
|
2021-10-18 05:44:04 +00:00
|
|
|
"bootswatch": "^5.1.3",
|
2022-06-15 05:04:20 +00:00
|
|
|
"core-js": "^3.23.1",
|
2021-12-29 05:04:43 +00:00
|
|
|
"date-fns": "^2.28.0",
|
2022-05-04 05:02:34 +00:00
|
|
|
"date-fns-tz": "^1.3.4",
|
2022-06-15 05:02:02 +00:00
|
|
|
"echarts": "^5.3.3",
|
2021-06-12 15:19:24 +00:00
|
|
|
"favico.js": "^0.3.10",
|
2022-06-01 07:55:55 +00:00
|
|
|
"humanize-duration": "^3.27.2",
|
2022-05-11 05:04:59 +00:00
|
|
|
"pinia": "^2.0.14",
|
2022-06-01 08:01:03 +00:00
|
|
|
"pinia-plugin-persistedstate": "^1.6.1",
|
2021-06-07 10:53:10 +00:00
|
|
|
"vue": "^2.6.14",
|
2020-07-26 08:40:23 +00:00
|
|
|
"vue-class-component": "^7.2.5",
|
2022-06-08 05:04:31 +00:00
|
|
|
"vue-demi": "0.13.1",
|
2022-01-19 05:04:36 +00:00
|
|
|
"vue-echarts": "^6.0.2",
|
2021-01-18 05:26:43 +00:00
|
|
|
"vue-grid-layout": "^2.3.12",
|
2021-12-01 05:03:15 +00:00
|
|
|
"vue-material-design-icons": "^5.0.0",
|
2022-05-18 05:03:37 +00:00
|
|
|
"vue-router": "^3.5.4",
|
2022-02-23 05:03:14 +00:00
|
|
|
"vue-select": "^3.18.3",
|
2022-04-19 18:24:14 +00:00
|
|
|
"vue2-helpers": "^1.1.7"
|
2020-05-04 04:31:12 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-09 04:27:49 +00:00
|
|
|
"@cypress/vite-dev-server": "^2.2.3",
|
2022-04-13 19:19:32 +00:00
|
|
|
"@cypress/vue": "^2.2.3",
|
2022-05-04 05:27:42 +00:00
|
|
|
"@types/echarts": "^4.9.15",
|
2022-05-04 05:03:17 +00:00
|
|
|
"@types/jest": "^27.5.0",
|
2020-06-04 18:20:48 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.33.0",
|
2022-06-08 05:03:32 +00:00
|
|
|
"@typescript-eslint/parser": "^5.27.1",
|
2020-09-08 09:53:13 +00:00
|
|
|
"@vue/eslint-config-prettier": "^6.0.0",
|
2020-08-29 09:14:44 +00:00
|
|
|
"@vue/eslint-config-typescript": "^5.1.0",
|
2022-06-08 05:03:43 +00:00
|
|
|
"@vue/runtime-dom": "^3.2.37",
|
2021-11-17 05:03:52 +00:00
|
|
|
"@vue/test-utils": "^1.3.0",
|
2022-06-08 06:02:59 +00:00
|
|
|
"cypress": "^10.0.3",
|
2020-05-04 04:31:12 +00:00
|
|
|
"eslint": "^6.7.2",
|
2021-08-23 05:07:04 +00:00
|
|
|
"eslint-plugin-prettier": "^3.4.1",
|
2021-10-28 17:46:14 +00:00
|
|
|
"eslint-plugin-vue": "^7.20.0",
|
2022-02-09 05:04:08 +00:00
|
|
|
"jest": "^27.5.1",
|
2020-09-12 17:15:37 +00:00
|
|
|
"mutationobserver-shim": "^0.3.7",
|
|
|
|
"popper.js": "^1.16.1",
|
|
|
|
"portal-vue": "^2.1.7",
|
2022-04-06 05:22:51 +00:00
|
|
|
"prettier": "^2.6.2",
|
2022-06-15 05:04:55 +00:00
|
|
|
"sass": "^1.52.3",
|
2022-05-25 05:28:50 +00:00
|
|
|
"sass-loader": "^13.0.0",
|
2022-03-30 05:26:09 +00:00
|
|
|
"ts-jest": "^27.1.4",
|
2022-06-08 05:04:08 +00:00
|
|
|
"typescript": "~4.7.3",
|
2022-06-08 06:04:17 +00:00
|
|
|
"vite": "^2.9.10",
|
2021-11-14 10:50:33 +00:00
|
|
|
"vite-jest": "^0.1.4",
|
2022-05-25 05:05:30 +00:00
|
|
|
"vite-plugin-vue2": "^2.0.1",
|
2022-04-27 04:53:45 +00:00
|
|
|
"vue-template-compiler": "^2.6.14",
|
2022-06-15 05:02:41 +00:00
|
|
|
"vue-tsc": "^0.37.8"
|
2020-05-04 04:31:12 +00:00
|
|
|
}
|
|
|
|
}
|