generated from hack4impact-calpoly/nextjs-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1013 Bytes
/
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
{
"name": "nextjs-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"test": "echo 'Install jest (or another unit test suite) to use this command.'",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/react": "^2.10.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"framer-motion": "^11.18.0",
"leaflet": "^1.9.4",
"mongoose": "^8",
"next": "^15.1.6",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/leaflet": "^1.9.16",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"husky": "^9",
"lint-staged": "^15",
"prettier": "^3",
"typescript": "^5"
}
}