forked from vyquocvu/vux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "vux",
"description": "Project is a blog build on Nextjs + Firebase and deploy on Vercel",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "PORT=3000 NODE_ENV=development next dev",
"export": "next export",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"analyze": "NODE_ENV=production ANALYZE=true next build",
"lint": "next lint"
},
"dependencies": {
"@next/bundle-analyzer": "^13.0.5",
"@next/font": "^13.0.4",
"@types/nprogress": "^0.2.0",
"@types/react-tag-input": "^6.6.1",
"@types/react-toast-notifications": "^2.4.0",
"cookie-session": "1.4.0",
"dayjs": "^1.8.32",
"firebase": "^7.14.0",
"firebase-admin": "8.9.0",
"isomorphic-unfetch": "^3.0.0",
"next": "13",
"nprogress": "^0.2.0",
"react": "18",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-tag-input": "^6.8.1",
"react-toast-notifications": "^2.4.0",
"sass": "^1.56.1"
},
"devDependencies": {
"@types/cookie-session": "^2.0.38",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.4",
"typescript": "4.5.5"
}
}