-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"private": false,
"name": "monoxide-api",
"description": "🛰️ REST API for Monoxide Ecosystem.",
"version": "0.0.1",
"author": "Monoxide <ezralazuardy@students.undip.ac.id>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BMO-technocorner/monoxide-api"
},
"keywords": [
"monoxide",
"monoxide-api",
"api",
"backend",
"nuxt",
"vue"
],
"scripts": {
"dev": "npm run db:pull && npm run db:generate && nuxi dev",
"build": "npm run db:pull && npm run db:generate && nuxi prepare && nuxi build && npm run lint",
"preview": "nuxi preview",
"lint": "npm run format && npm run check",
"format": "prettier --write .",
"check": "prettier --check .",
"prepare": "husky install && husky add .husky/pre-commit 'npm run build'",
"upgrade": "nuxi upgrade && npm upgrade",
"start": "node .output/server/index.mjs",
"test": "nuxi prepare",
"db:compile": "npx prisma-aurora",
"db:generate": "npx prisma generate --schema=prisma/dist/schema.prisma",
"db:pull": "npx prisma db pull --schema=prisma/dist/schema.prisma",
"db:push": "npm run db:compile && npx prisma db push --schema=prisma/dist/schema.prisma",
"db:studio": "npx prisma studio --schema=prisma/dist/schema.prisma"
},
"devDependencies": {
"@heroicons/vue": "^1.0.6",
"@nuxt/kit-edge": "^3.0.0-27477996.646c2f6",
"@nuxt/types": "^2.15.8",
"@nuxtjs/color-mode": "^3.0.2",
"@nuxtjs/tailwindcss": "^5.0.2",
"@prisma/client": "^3.11.1",
"@types/aos": "^3.0.4",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.3.1",
"aos": "^2.3.4",
"autoprefixer": "^10.4.4",
"bcrypt": "^5.0.1",
"fastest-validator": "^1.12.0",
"google-fonts-helper": "^2.0.1",
"husky": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.1",
"nuxt-typed-router": "^1.1.2",
"nuxt3": "^3.0.0-27491748.3186841",
"postcss": "^8.4.12",
"prettier": "^2.6.1",
"sass": "^1.49.10",
"tailwind-scrollbar": "^1.3.1",
"typescript": "^4.6.3",
"vue-tsc": "^0.33.9",
"vue-writer": "^1.2.0"
}
}