-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 973 Bytes
/
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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"cypress": "/bin/sh run-cypress.sh",
"cypress-dev": "cypress open --config baseUrl=http://localhost:3000"
},
"dependencies": {
"@nuxt/eslint": "^0.4.0",
"@nuxtjs/tailwindcss": "^6.13.1",
"@types/prismjs": "^1.26.5",
"cypress": "^14.0.3",
"eslint": "^9.21.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"mustache": "^4.2.0",
"nuxt": "^3.12.2",
"prism-es6": "^1.2.0",
"prismjs": "^1.29.0",
"serve": "^14.2.4",
"typescript": "^5.7.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
"@pinia/nuxt": "^0.5.5",
"nuxt-fathom": "^0.0.2"
}
}