-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "identity-provider-example",
"version": "1.0.0",
"private": true,
"author": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "node ./database/scripts/migrate.js",
"db:print": "node ./database/scripts/print.js"
},
"dependencies": {
"@chakra-ui/react": "^1.6.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"bcrypt": "^5.0.1",
"cookie": "^0.4.1",
"formik": "^2.2.9",
"framer-motion": "^4",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"next": "13.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"set-cookie-parser": "^2.4.8",
"sqlite": "^4.0.23",
"sqlite3": "^5.1.5",
"swr": "^0.5.6",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jsonwebtoken": "^8.5.1",
"@types/react": "17.0.8",
"@types/set-cookie-parser": "^2.4.0",
"@types/sqlite3": "^3.1.7",
"@types/uuid": "^8.3.0",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"typescript": "4.3.2"
}
}