-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 945 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
41
{
"name": "design-your-transit-system",
"author": "Brendan Nee <[email protected]>",
"version": "0.7.0",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.0",
"clsx": "^2.1.1",
"color": "^4.2.3",
"json2csv": "^5.0.7",
"mongoose": "^8.9.5",
"next": "15.1.5",
"nextjs-basic-auth-middleware": "^3.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-modal": "^3.16.3",
"react-sticky-el": "^2.1.1",
"slugify": "^1.6.6",
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"lint-staged": {
"*.js": "prettier --write",
"*.json": "prettier --write"
}
}