-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
54 lines (54 loc) · 1.58 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "quotes",
"description": "Every Day Inspirasional Quotes build with Vite, Vue 3, Typescript, and TailwindCSS",
"version": "1.5.0",
"scripts": {
"dev": "vite",
"build": "npm run generate:quotes && vue-tsc --noEmit && vite-ssg build",
"serve": "vite preview",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"lint:fix": "eslint \"**/*.{vue,ts,js}\" --fix",
"format:yaml": "prettier --list-different quotes/*.{yml,yaml}",
"format:yaml:fix": "prettier --write quotes/*.{yml,yaml}",
"generate:quotes": "node quotes/generator.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nyancodeid/quotes.git"
},
"dependencies": {
"@vue/server-renderer": "^3.2.19",
"@vueuse/core": "^6.5.3",
"@vueuse/head": "^0.5.1",
"changedpi": "^1.0.4",
"file-saver": "^2.0.5",
"html-to-image": "^1.9.0",
"lozad": "^1.16.0",
"vite-ssg": "^0.15.4",
"vue": "^3.2.16",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",
"@iconify/json": "^1.1.409",
"@types/file-saver": "^2.0.3",
"@types/lozad": "^1.16.1",
"@vitejs/plugin-vue": "^1.9.2",
"autoprefixer": "^10.3.6",
"critters": "^0.0.10",
"dotenv-flow": "^3.2.0",
"eslint": "^7.32.0",
"js-yaml": "^4.1.0",
"md5": "^2.3.0",
"node-fetch": "^2.6.1",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"sitemap": "^7.0.0",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3",
"unplugin-icons": "^0.12.7",
"unplugin-vue-components": "^0.15.6",
"vite": "^2.6.0",
"vue-tsc": "^0.3.0"
}
}