-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 808 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 808 Bytes
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
{
"name": "article-engine",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nuxt/ui": "^2.15.0",
"@pinia/nuxt": "^0.5.1",
"nuxt": "^3.11.1",
"pinia": "^2.1.7",
"sequelize": "^6.37.2",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/types": "^2.17.3",
"@types/uuid": "^9.0.8",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.24.0",
"vue-eslint-parser": "^9.4.2"
}
}