-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 KB
/
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
{
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@types/react-beautiful-dnd": "^13.1.8",
"@uiw/react-md-editor": "^4.0.5",
"colorthief": "^2.4.0",
"concurrently": "^9.1.2",
"express-rate-limit": "^7.5.0",
"next": "^15.1.6",
"nodemailer": "^6.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"sharp": "^0.33.5",
"swr": "^2.3.0"
},
"scripts": {
"start": "concurrently \"npm start:frontend\" \"npm start:backend\"",
"start:frontend": "cd frontend && npm run build && npm run start:watch",
"start:backend": "cd backend && npm run start --port 3001",
"dev": "concurrently \"npm run dev:frontend\" \"npm dev:backend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev"
},
"devDependencies": {
"css-loader": "^7.1.2",
"nodemon": "^3.1.9",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}