-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"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": {
"@apollo/client": "^4.1.9",
"@contentful/rich-text-react-renderer": "^16.2.1",
"@google/earthengine": "^1.7.25",
"@next/third-parties": "^14.2.3",
"@types/google-earth": "^0.0.8",
"braces": ">=3.0.3",
"contentful": "^10.11.10",
"express": "^5.2.1",
"graphql": "^16.13.2",
"lightgallery": "^2.7.2",
"maplibre-gl": "^4.2.0",
"next": "^14.2.28",
"nodemailer": "^8.0.7",
"react": "^18",
"react-dom": "^18",
"react-google-recaptcha": "^3.1.0",
"rxjs": "^7.8.2",
"sass": "^1.77.8",
"sqlite3": "^6.0.1",
"styled-components": "^6.1.8",
"swiper": "^12.1.4"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-google-recaptcha": "^2.1.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.28",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "3.8.3",
"typescript": "^5.4.5"
}
}