-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wings-of-nature",
"version": "0.1.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"images": "nuxt generate && cp -R ./.output/public/_ipx ./src/public",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"prettier": "prettier src --check",
"prettier:fix": "prettier src --write",
"test:unit": "vitest --config ./vitest.config.ts",
"test:e2e": "playwright test",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"npm run lint:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxt/image-edge": "1.0.0-27919678.2f5b64b",
"@nuxt/test-utils": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.4.0",
"@playwright/test": "^1.36.2",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/test-utils": "^2.2.10",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"execa": "^6.1.0",
"happy-dom": "^8.2.6",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.1",
"nuxt": "^3.6.5",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.13.0",
"vite-imagetools": "^4.0.19",
"vite-plugin-vue-type-imports": "^0.2.4",
"vitest": "^0.27.3"
},
"dependencies": {
"@google-cloud/storage": "^7.9.0",
"@heroicons/vue": "^2.0.15",
"@kevinmarrec/nuxt-pwa": "^0.16.2",
"@nuxtjs/google-fonts": "^3.2.0",
"@sendgrid/mail": "^8.1.3",
"@types/mongoose": "^5.11.97",
"@vueuse/core": "^9.12.0",
"aws-sdk": "^2.1604.0",
"axios": "^1.6.8",
"h3": "^1.11.1",
"mongoose": "^8.2.1",
"nodemailer": "^6.9.13",
"slugify": "^1.6.5",
"ufo": "^1.0.1"
},
"packageManager": "[email protected]"
}