-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 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
57
58
59
60
61
62
{
"name": "strike-oauth-example",
"version": "0.1.0",
"description": "Strike OAuth Example",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"db:pull:dev": "dotenv -e .env.development prisma db pull",
"db:push:dev": "dotenv -e .env.development prisma db push",
"db:studio:dev": "dotenv -e .env.development prisma studio",
"db:gen:dev": "dotenv -e .env.development prisma generate",
"db:push:prod": "dotenv -e .env.production.local prisma db push",
"db:studio:prod": "dotenv -e .env.production.local prisma studio"
},
"author": "Tom Kirkpatrick",
"license": "ISC",
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/fira-code": "^4.5.8",
"@fontsource/montserrat": "^4.5.7",
"@prisma/client": "^3.11.1",
"@types/axios": "^0.14.0",
"@types/memory-cache": "^0.2.2",
"axios": "^0.26.1",
"dotenv-cli": "^5.1.0",
"framer-motion": "^6",
"jose": "4.5.0",
"memory-cache": "^0.2.0",
"nanoid": "^3.3.1",
"nanoid-dictionary": "^4.3.0",
"next": "12.1.0",
"next-auth": "4.2.1",
"prisma": "^3.11.1",
"qrcode.react": "1.0.1",
"raw-body": "^2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.24.8"
},
"devDependencies": {
"@svgr/webpack": "6.2.1",
"@types/material-ui": "^0.21.12",
"@types/node": "^17.0.23",
"@types/node-jose": "1.1.8",
"@types/react": "17.0.39",
"eslint": "8.9.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "8.4.0",
"husky": "7.0.4",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"typescript": "4.5.5"
}
}