-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.83 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
{
"name": "win-11-portfolio",
"version": "1.1.0",
"description": "NextJS project template by Rafly Maulana",
"main": "index.js",
"repository": "https://github.com/raflymln/nextjs-template.git",
"bugs": "https://github.com/raflymln/nextjs-template",
"author": {
"name": "Rafly Maulana",
"email": "[email protected]",
"url": "https://raflymaulana.me"
},
"homepage": "https://raflymaulana.me",
"license": "MIT",
"private": true,
"contributors": [],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"lint": "next lint",
"css:dev": "TAILWIND_MODE=watch postcss ./styles/tailwind.css -o ./styles/globals.css --watch",
"css:build": "postcss ./styles/tailwind.css -o ./styles/globals.css"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@prisma/client": "^5.4.2",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-icons": "^1.3.0",
"@stitches/react": "^1.2.8",
"@vechaiui/react": "^0.2.2",
"date-fns": "^2.30.0",
"moment": "^2.29.4",
"next": "^13.5.4",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6"
},
"devDependencies": {
"@types/node": "^20.8.5",
"@types/react": "^18.2.28",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prisma": "^5.4.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}