-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "todo-app",
"private": true,
"type": "module",
"keywords": ["nuxtjs", "typescript", "bun", "client-side-rendering", "poc"],
"version": "1.0.0",
"author": {
"name": "Jesús Fernández Jiménez",
"email": "[email protected]",
"url": "https://jesusfj710.github.io"
},
"repository": {
"type": "github",
"url": "https://github.com/jesusfj710/todo-app"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/ui": "^2.11.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "latest",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"nuxt": "^3.8.1",
"postcss": "^8.4.31",
"vue": "^3.3.8",
"vue-router": "^4.2.5"
},
"dependencies": {
"@nuxtjs/i18n": "next",
"@pinia/nuxt": "^0.5.1",
"localforage": "^1.10.0",
"pinia": "^2.1.7"
}
}