forked from novuhq/hacksquad-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.2 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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.13.0",
"npm": ">=8.6.0"
},
"scripts": {
"dev": "next dev",
"build": "next build --debug",
"start": "next start",
"format": "prettier --write .",
"lint": "npm run lint:js & npm run lint:styles",
"lint:fix": "npm run lint:js:fix & npm run lint:styles:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.4",
"@novu/node": "^0.8.0",
"@novu/notification-center": "^0.8.0",
"@prisma/client": "^4.3.1",
"airtable": "^0.11.5",
"clsx": "^1.2.1",
"cookies-next": "^2.1.1",
"country-list": "^2.2.0",
"file-loader": "^6.2.0",
"framer-motion": "^6.3.11",
"mailchimp-marketing": "^5.0.0",
"moment": "^2.29.4",
"next": "^12.2.5",
"next-auth": "^4.10.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-autocomplete": "^1.8.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.38.0",
"react-is": "^18.2.0",
"react-toastify": "^9.0.8",
"react-tooltip": "^4.4.2",
"tailwindcss": "^3.1.8",
"tailwindcss-safe-area": "^0.2.2",
"use-debounce": "^8.0.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@svgr/webpack": "^6.3.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^12.5.0",
"postcss": "^8.4.16",
"postcss-import": "^14.1.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.3.1",
"svgo-loader": "^3.0.1",
"url-loader": "^4.1.1"
}
}