This repository has been archived by the owner on Nov 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "loddonse-website",
"version": "1.0.0",
"description": "Website for Loddon Social Enterprise",
"main": "index.js",
"repository": "[email protected]:Loddon-Social-Enterprise/website.git",
"author": "Ben Hodgson <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"prebuild": "node prebuild.js",
"postbuild": "next-sitemap",
"export": "next export",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"prettier": "prettier --config .prettierrc.json '{src/**/*.{ts,tsx,js,json,css},dev/*.{ts,tsx,js,json,css}}'",
"prettier:lint": "npm run prettier -- --list-different",
"prettier:fix": "npm run prettier -- --write"
},
"dependencies": {
"classnames": "^2.3.2",
"leaflet": "^1.9.4",
"next": "13.4.9",
"next-seo": "^6.1.0",
"next-sitemap": "^4.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"scss-reset": "^1.2.2"
},
"devDependencies": {
"@contentful/rich-text-react-renderer": "^15.17.0",
"@contentful/rich-text-types": "^16.0.2",
"@types/leaflet": "^1.9.3",
"@types/node": "20.4.4",
"@types/react": "^18.2.8",
"@types/react-leaflet": "^3.0.0",
"autoprefixer": "^10.4.14",
"contentful": "^9.2.19",
"eslint": "8",
"eslint-config-next": "13.3.0",
"graphql-request": "^5.1.0",
"postcss": "^8.4.28",
"prettier": "^2.8.8",
"sass": "^1.57.1",
"typescript": "^5.1.3"
}
}