advent22/ui/package.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2022-10-28 00:14:20 +00:00
{
"name": "advent22_ui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
2023-01-21 02:59:46 +00:00
"test:unit": "vue-cli-service test:unit",
2023-01-23 22:38:57 +00:00
"test:unit-watch": "vue-cli-service test:unit --watch",
2022-10-28 00:14:20 +00:00
"lint": "vue-cli-service lint"
},
"dependencies": {
2023-09-03 19:31:49 +00:00
"core-js": "^3.32.1",
"vue": "^3.3.4",
2022-10-28 00:14:20 +00:00
"vue-class-component": "^8.0.0-0"
},
"devDependencies": {
2023-01-20 00:41:15 +00:00
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
2023-09-03 19:38:30 +00:00
"@types/chai": "^4.3.5",
2023-09-15 23:20:15 +00:00
"@types/luxon": "^3.3.2",
2023-09-03 19:38:30 +00:00
"@types/mocha": "^10.0.1",
2023-09-03 19:31:49 +00:00
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
2022-10-28 00:14:20 +00:00
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
2023-01-21 02:59:46 +00:00
"@vue/cli-plugin-unit-mocha": "~5.0.0",
2022-10-28 00:14:20 +00:00
"@vue/cli-service": "~5.0.0",
2023-09-03 19:31:49 +00:00
"@vue/eslint-config-typescript": "^11.0.3",
2023-09-03 19:38:30 +00:00
"@vue/test-utils": "^2.4.1",
2023-09-03 19:31:49 +00:00
"axios": "^1.5.0",
2022-10-30 02:35:39 +00:00
"bulma": "^0.9.4",
2023-09-14 03:36:42 +00:00
"bulma-prefers-dark": "^0.1.0-beta.1",
2023-01-21 02:59:46 +00:00
"chai": "^4.2.0",
2023-09-03 19:31:49 +00:00
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
2023-09-15 23:20:15 +00:00
"luxon": "^3.4.3",
2023-09-03 19:31:49 +00:00
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"typescript": "~5.2.2"
2022-10-28 00:14:20 +00:00
}
2023-09-03 19:38:30 +00:00
}