-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
60 lines (60 loc) · 1.93 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
{
"name": "beam-web",
"packageManager": "yarn@3.5.0",
"type": "module",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"dev-run": "cd dist && python3 -m http.server 8000",
"generate": "yarn lintfix && nuxi generate",
"preview": "yarn lintfix && nuxi preview",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"check-updates": "npx npm-check-updates",
"apply-updates": "npx npm-check-updates -u && yarn install"
},
"devDependencies": {
"@nuxt/content": "^2.10.0",
"@nuxtjs/device": "^3.1.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/fontaine": "^0.4.1",
"@nuxtjs/i18n": "^8.0.0",
"@nuxtjs/tailwindcss": "^6.10.4",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"nuxt": "^3.9.1",
"nuxt-seo-experiments": "^3.1.9",
"nuxt-simple-robots": "^3.1.10",
"nuxt-simple-sitemap": "^4.4.1",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
},
"dependencies": {
"@nuxt/types": "^2.17.3",
"@popperjs/core": "^2.11.8",
"@tailwindcss/typography": "^0.5.10",
"@types/canvas-confetti": "^1.6.4",
"@types/markdown-it": "^13.0.7",
"@types/uuid": "^9.0.7",
"canvas-confetti": "^1.9.2",
"date-fns": "^3.3.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"gsap": "^3.12.4",
"markdown-it": "^14.0.0",
"npm-check-updates": "^16.14.12",
"nuxt-multi-cache": "^3.1.1",
"nuxt-security": "^1.0.0",
"swiper": "^11.0.5",
"tailwindcss": "^3.4.1",
"vue3-marquee": "^4.1.0"
}
}