-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "www-my-covid-story",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma migrate deploy && next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint-fix": "eslint --fix '*/**/*.{js,ts,tsx}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"prepare": "husky install",
"ts-node": "ts-node --project=tsconfig.seed.json",
"vercel-build": "prisma migrate deploy && next build",
"prisma:generate": "prisma generate",
"gen:theme-typings": "chakra-cli tokens theme/index.ts",
"postinstall": "prisma generate",
"test": "jest"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.11",
"@chakra-ui/react": "^1.5.1",
"@chakra-ui/theme-tools": "^1.1.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.2.2",
"@hookform/resolvers": "^2.4.0",
"@prisma/client": "^2.21.2",
"@sendgrid/mail": "^7.4.4",
"@sentry/nextjs": "^6.3.4",
"@sentry/react": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"fathom-client": "^3.0.0",
"formik": "^2.2.6",
"framer-motion": "^4.1.4",
"next": "10.2.0",
"next-auth": "^3.14.8",
"next-sitemap": "^1.6.25",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-fast-compare": "^3.2.0",
"react-share": "^4.4.0",
"sanitize-html": "^2.3.3",
"superjson": "^1.7.4",
"tinycolor2": "^1.4.2",
"use-debounce": "^6.0.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/faker": "^5.5.3",
"@types/jest": "^26.0.23",
"@types/next-auth": "^3.13.0",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-superjson-next": "^0.2.3",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"ora": "^5.4.0",
"prettier": "^2.2.1",
"prisma": "^2.21.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}