-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 954 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"backend": "nodemon packages/Backend/src/server/index.ts",
"landingpage": "pnpm run dev apps/landingpage",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"eslint": "^8.48.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.5",
"tsconfig": "*",
"turbo": "latest"
},
"name": "emma-app",
"workspaces": [
"apps/webapp",
"apps/landingpage"
],
"dependencies": {
"@clerk/nextjs": "^4.29.1",
"@material-tailwind/react": "^2.1.4",
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"express": "^4.18.2",
"nodemon": "^3.0.2",
"prisma": "^5.7.0",
"react-icons": "^4.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}