-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 973 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
{
"name": "ambrosia",
"private": true,
"type": "module",
"devDependencies": {
"bun-types": "latest",
"husky": "^8.0.3",
"turbo": "^1.11.2"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier \"**/*.{ts,tsx,md}\""
},
"workspaces": [
"frontend",
"backend"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "latest",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"axios": "^1.6.3",
"body-parser": "^1.20.2",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongoose": "^8.0.3",
"tailwind": "^4.0.0",
"tailwindcss": "^3.4.0"
}
}