-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{tsx,ts,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.21.2",
"@google/earthengine": "^0.1.402",
"@next/third-parties": "^14.2.3",
"@types/google-earth": "^0.0.8",
"braces": ">=3.0.3",
"contentful": "^10.11.10",
"express": "^4.19.2",
"lightgallery": "^2.7.2",
"maplibre-gl": "^4.2.0",
"next": "14.2.2",
"nodemailer": "^6.9.14",
"react": "^18",
"react-dom": "^18",
"sass": "^1.77.8",
"styled-components": "^6.1.8",
"swiper": "^11.1.14"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
}
}