forked from RizkyRajitha/linkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "linkin",
"version": "0.4.0",
"private": true,
"license": "MIT",
"description": "Linkin is a customizable self hosted link tree application",
"logo": "https://res.cloudinary.com/dijjqfsto/image/upload/v1621666671/linkin_logo_1_jcuvr3.png",
"repository": {
"type": "git",
"url": "https://github.com/RizkyRajitha/linkin.git"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"seed": "node scripts/seed.js",
"build": "npm-run-all prismamigrateprod prismagenerate seed build-next",
"prismagenerate": "prisma generate",
"prismamigrateprod": "prisma migrate deploy",
"herokustart": "next start -p $PORT",
"build-next": "next build",
"test": "jest --coverage ./__tests__/"
},
"dependencies": {
"@prisma/client": "^2.25.0",
"bcrypt": "^5.0.0",
"cookie": "^0.4.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"jose": "^1.28.0",
"lodash.debounce": "^4.0.8",
"next": "^10.0.0",
"npm-run-all": "^4.1.5",
"pg": "^8.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.4.2",
"react-toastify": "^7.0.4",
"sweetalert2": "^11.0.16"
},
"devDependencies": {
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"babel-jest": "^27.0.1",
"jest": "^27.0.1",
"prisma": "^2.25.0"
}
}