-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 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": "fleetology",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prod:build": "yarn codegen && yarn build && yarn postbuild",
"start": "next start",
"lint": "next lint && yarn prettier -w && next build",
"prettier": "prettier --write \"**/*.+(js|jsx|ts|tsx|css|scss|md)\""
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.15",
"@nextui-org/react": "^1.0.0-beta.13",
"@types/node": "20.2.5",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"framer-motion": "^10.12.16",
"husky": "^8.0.3",
"lottie-react": "^2.4.0",
"mapbox-gl": "^2.15.0",
"mongoose": "^7.2.3",
"next": "13.4.4",
"next-auth": "^4.24.5",
"next-sitemap": "^4.1.3",
"postcss": "8.4.24",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"uuid": "^9.0.0",
"webpack": "^5.87.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/mapbox-gl": "^2.7.11",
"eslint": "^8.46.0",
"eslint-plugin-next": "^0.0.0",
"jsonwebtoken": "^9.0.1"
}
}