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
|
{
"name": "histplorer",
"private": true,
"version": "0.1.0",
"description": "An interactive historical timeline",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tsc": "vue-tsc --noEmit",
"test": "vitest"
},
"author": "Terry Truong",
"license": "MIT",
"dependencies": {
"bintrees": "^1.0.2",
"pinia": "^2.0.22",
"vue": "^3.2.37"
},
"devDependencies": {
"@testing-library/vue": "^6.6.1",
"@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",
"happy-dom": "^8.1.0",
"postcss": "^8.4.17",
"smartcrop-cli": "^2.0.3",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vitest": "^0.25.8",
"vue-tsc": "^0.40.4"
}
}
|