-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 748 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 748 Bytes
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
{
"name": "anime-tracker",
"version": "1.0.0",
"description": "MERN Stack Anime & TV Series Tracker",
"scripts": {
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"install-all": "npm run install-backend && npm run install-frontend",
"backend": "cd backend && npm run dev",
"frontend": "cd frontend && npm start",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "cd frontend && npm run build",
"start": "cd backend && npm start"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"anime",
"tracker",
"mern",
"react",
"mongodb"
],
"author": "Anime Tracker Team",
"license": "MIT"
}