aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-10-07 12:37:48 +1100
committerTerry Truong <terry06890@gmail.com>2022-10-07 12:37:48 +1100
commit1c69c4abf6e54ccab886c23cd6e691179ce6f076 (patch)
treedfc4652254184d17ec05ead55bdc5ee5c04376bc /package.json
parent141f310d87f4fd7c3a4c728bf278c10fadc19606 (diff)
Install client side tools
Install and configure Vite, Vue, Tailwind, Pinia, Typescript, and ESLint Add basic framework files (index.html, App.vue, main.ts, etc) Update READMEs Add favicon, font, and LICENCE.txt
Diffstat (limited to 'package.json')
-rw-r--r--package.json23
1 files changed, 21 insertions, 2 deletions
diff --git a/package.json b/package.json
index 882895f..00b3e1b 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,32 @@
{
"name": "histplorer",
+ "private": true,
"version": "0.1.0",
"description": "An interactive historical timeline",
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
+ "dev": "vite",
+ "build": "vue-tsc --noEmit && vite build",
+ "preview": "vite preview",
+ "tsc": "vue-tsc --noEmit"
},
"author": "Terry Truong",
"license": "MIT",
+ "dependencies": {
+ "pinia": "^2.0.22",
+ "vue": "^3.2.37"
+ },
"devDependencies": {
- "smartcrop-cli": "^2.0.3"
+ "@typescript-eslint/eslint-plugin": "^5.39.0",
+ "@typescript-eslint/parser": "^5.39.0",
+ "@vitejs/plugin-vue": "^3.1.0",
+ "autoprefixer": "^10.4.12",
+ "eslint": "^8.24.0",
+ "eslint-plugin-vue": "^9.6.0",
+ "postcss": "^8.4.17",
+ "smartcrop-cli": "^2.0.3",
+ "tailwindcss": "^3.1.8",
+ "typescript": "^4.6.4",
+ "vite": "^3.1.0",
+ "vue-tsc": "^0.40.4"
}
}