generated from CloudCannon/justice-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "eauw.org",
"version": "2.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true next build",
"prebuild": "node scripts/generate-programs-json.js",
"build": "next build && next-sitemap && next export && next-image-export-optimizer",
"postbuild": "nexered --provider=cloudflare-pages",
"dev": "next dev -p 3333",
"format": "prettier --write .",
"lint": "next lint",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@cloudcannon/react-connector": "^1.0.8",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/lab": "^5.0.0-alpha.97",
"@mui/material": "^5.10.14",
"@next/bundle-analyzer": "^13.0.3",
"@next/font": "^13.0.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.6",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"nexered": "^0.2.0",
"next": "^13.0.3",
"next-image-export-optimizer": "^1.0.1",
"next-seo": "^5.14.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-select": "^5.7.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.13",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.32",
"postcss": "^8.4.19",
"postcss-import": "^15.0.0",
"postcss-nested": "^6.0.0",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"tailwindcss": "^3.2.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}