forked from roqtech/roq-nextjs-prisma-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 887 Bytes
/
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
{
"name": "roq-nextjs-saas-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@next/font": "13.1.1",
"@roq/nextjs": "^0.1.48",
"bcrypt": "^5.1.0",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"formik": "^2.2.9",
"javascript-time-ago": "^2.5.9",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.2",
"next": "13.1.1",
"openai": "^3.1.0",
"pg": "^8.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.0.3",
"typescript": "4.9.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"prettier": "^2.8.3"
}
}