-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 861 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
{
"name": "my_journey",
"version": "1.0.0",
"description": "My Personal Journey",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"frontend-start": "cd client && npm start",
"frontent-build": "cd client && npm run build",
"frontend-install": "cd client && npm install",
"backend-start": "cd server && npm start",
"backend-install": "cd server && npm install",
"start": "concurrently \"npm run backend-start\" \"npm run frontend-start\"",
"fb-install": "concurrently \"npm install\" \"npm run backend-install\" \"npm run frontend-install\"",
"frontend-build": "cd client && npm run build"
},
"author": "Sagar Gupta",
"license": "ISC",
"devDependencies": {
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^4.0.0"
},
"dependencies": {
"concurrently": "^9.0.0"
}
}