forked from bvqbao/nuxt3-module-notfound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 934 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"dbmigrate": "knex --knexfile .\\server\\knexfile.js migrate:latest",
"dbseed": "knex --knexfile .\\server\\knexfile.js seed:run"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@nuxt/content": "^2.7.2",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.1.1",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/tailwindcss": "^6.8.0",
"@parcel/watcher": "^2.2.0",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.4.5",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.45.0",
"nuxt": "^3.6.5",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1"
},
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@heroicons/vue": "^2.0.18",
"knex": "^2.5.1",
"sqlite3": "^5.1.6"
}
}