2022-08-30 18:05:21 +00:00
|
|
|
{
|
2022-09-01 22:32:03 +00:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2022-09-04 02:42:03 +00:00
|
|
|
"build": "nuxt generate",
|
2022-09-01 22:32:03 +00:00
|
|
|
"dev": "nuxt dev",
|
|
|
|
"preview": "nuxt preview",
|
2022-09-02 17:46:20 +00:00
|
|
|
"postinstall": "nuxt prepare",
|
2022-09-09 22:46:53 +00:00
|
|
|
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore .",
|
|
|
|
"lint:fix": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore . --fix",
|
2023-02-18 06:41:01 +00:00
|
|
|
"lint:ci": "eslint --ext \".ts,.js,.vue\" --ignore-path ../.gitignore . --max-warnings 1",
|
|
|
|
"typecheck": "nuxi typecheck",
|
2022-09-04 02:42:03 +00:00
|
|
|
"test:ci": "TEST_SHUTDOWN_API_SERVER=true vitest --run --config ./test/vitest.config.ts",
|
|
|
|
"test:local": "TEST_SHUTDOWN_API_SERVER=false && vitest --run --config ./test/vitest.config.ts",
|
|
|
|
"test:watch": " TEST_SHUTDOWN_API_SERVER=false vitest --config ./test/vitest.config.ts"
|
2022-09-01 22:32:03 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-10-07 02:54:09 +00:00
|
|
|
"@faker-js/faker": "^7.5.0",
|
2023-01-15 22:55:48 +00:00
|
|
|
"@nuxtjs/eslint-config-typescript": "^12.0.0",
|
2023-03-21 02:43:04 +00:00
|
|
|
"@types/dompurify": "^3.0.0",
|
2023-02-18 06:41:01 +00:00
|
|
|
"@types/markdown-it": "^12.2.3",
|
2022-09-09 22:46:53 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
|
|
"@typescript-eslint/parser": "^5.36.2",
|
2023-03-23 18:27:12 +00:00
|
|
|
"@vite-pwa/nuxt": "^0.0.7",
|
2022-09-09 22:46:53 +00:00
|
|
|
"eslint": "^8.23.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
|
|
"eslint-plugin-vue": "^9.4.0",
|
2022-09-04 02:42:03 +00:00
|
|
|
"isomorphic-fetch": "^3.0.0",
|
2023-03-07 19:12:32 +00:00
|
|
|
"nuxt": "3.2.3",
|
2022-09-09 22:46:53 +00:00
|
|
|
"prettier": "^2.7.1",
|
2023-03-21 19:23:30 +00:00
|
|
|
"typescript": "^5.0.0",
|
2022-09-09 22:46:53 +00:00
|
|
|
"vite-plugin-eslint": "^1.8.1",
|
2023-02-25 19:45:56 +00:00
|
|
|
"vitest": "^0.29.0"
|
2022-09-01 22:32:03 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-10 02:47:41 +00:00
|
|
|
"@headlessui/vue": "^1.7.9",
|
2022-09-01 22:32:03 +00:00
|
|
|
"@iconify/vue": "^3.2.1",
|
2022-12-10 05:57:57 +00:00
|
|
|
"@nuxtjs/tailwindcss": "^6.1.3",
|
2022-09-01 22:32:03 +00:00
|
|
|
"@pinia/nuxt": "^0.4.1",
|
|
|
|
"@tailwindcss/aspect-ratio": "^0.4.0",
|
|
|
|
"@tailwindcss/forms": "^0.5.2",
|
|
|
|
"@tailwindcss/typography": "^0.5.4",
|
|
|
|
"@vueuse/nuxt": "^9.1.1",
|
2023-01-01 21:50:48 +00:00
|
|
|
"@vueuse/router": "^9.9.0",
|
2022-09-01 22:32:03 +00:00
|
|
|
"autoprefixer": "^10.4.8",
|
2022-12-30 01:19:15 +00:00
|
|
|
"chart.js": "^4.0.1",
|
2022-09-01 22:32:03 +00:00
|
|
|
"daisyui": "^2.24.0",
|
2023-02-16 19:42:48 +00:00
|
|
|
"dompurify": "^3.0.0",
|
2022-12-03 01:12:32 +00:00
|
|
|
"markdown-it": "^13.0.1",
|
2022-09-01 22:32:03 +00:00
|
|
|
"pinia": "^2.0.21",
|
|
|
|
"postcss": "^8.4.16",
|
|
|
|
"tailwindcss": "^3.1.8",
|
2023-02-18 06:41:01 +00:00
|
|
|
"vue": "^3.2.45",
|
2023-01-01 21:50:48 +00:00
|
|
|
"vue-chartjs": "^4.1.2",
|
|
|
|
"vue-router": "4"
|
2022-09-01 22:32:03 +00:00
|
|
|
}
|
2022-09-02 17:46:20 +00:00
|
|
|
}
|