-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "bun db:schema && nuxt build",
"dev": "bun db:schema && nuxt dev",
"generate": "bun db:schema && nuxt generate",
"preview": "bun db:schema && nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . --ignore-pattern \"zapatos/\"",
"lint:fix": "eslint . --ignore-pattern \"zapatos/\" --fix",
"db:create": "dbmate create",
"db:schema": "dotenv -e .env -- zapatos",
"db:migrate": "dbmate migrate"
},
"dependencies": {
"@vueuse/core": "^11.2.0",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"lodash-es": "^4.17.21",
"lucide-vue-next": "^0.447.0",
"nuxt": "^3.12.4",
"path-browserify": "^1.0.1",
"pg": "^8.12.0",
"vue": "latest",
"zapatos": "^6.4.2"
},
"devDependencies": {
"@nuxt/eslint": "^0.5.0",
"@nuxt/icon": "^1.5.2",
"@nuxt/image": "^1.8.1",
"@types/bcrypt": "^5.0.2",
"@types/folder-hash": "^4.0.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash-es": "^4.17.12",
"@types/path-browserify": "^1.0.3",
"@types/pg": "^8.11.8",
"autoprefixer": "^10.4.20",
"dbmate": "^2.21.0",
"dotenv-cli": "^7.4.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"folder-hash": "^4.0.4",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.9"
}
}