-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nuxt3-template",
"private": "true",
"description": "Nuxt 3 Template for public websites",
"repository": {
"url": "https://github.com/jsulpis/nuxt3-template"
},
"license": "MIT",
"author": {
"name": "Julien Sulpis",
"url": "https://twitter.com/jsulpis"
},
"scripts": {
"postinstall": "husky install && nuxt prepare",
"analyze": "nuxt analyze",
"build": "nuxt build",
"build:mock": "cross-env MOCK=true pnpm build",
"clean": "rimraf .nuxt .output dist playwright-report",
"dev": "nuxt dev",
"dev:mock": "cross-env MOCK=true pnpm dev",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"typecheck": "nuxt typecheck",
"preview": "nuxt preview",
"serve": "run-s build preview",
"serve:mock": "run-s build:mock preview",
"pretest": "playwright install --with-deps",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@edge-runtime/cookies": "3.0.4",
"@fontsource/inter": "4.5.15",
"@nuxtjs/i18n": "8.0.0-beta.9",
"@nuxtjs/plausible": "0.2.0",
"@nuxtjs/robots": "3.0.0",
"@pinia/nuxt": "0.4.7",
"@unocss/reset": "0.49.7",
"@vueuse/nuxt": "9.13.0",
"nuxt": "3.2.2",
"nuxt-icon": "0.3.2",
"nuxt-simple-sitemap": "1.0.7",
"pinia": "2.0.31",
"vue": "3.2.47"
},
"devDependencies": {
"@playwright/test": "1.30.0",
"@types/node": "18.14.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"cross-env": "7.0.3",
"eslint": "8.34.0",
"eslint-plugin-playwright": "0.12.0",
"eslint-plugin-vue": "9.9.0",
"husky": "8.0.3",
"lint-staged": "13.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.8.4",
"rimraf": "4.1.2",
"sass": "1.58.3",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"vite": "4.1.3"
}
}