-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 732 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 732 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
28
{
"name": "flowfocus",
"version": "1.0.0",
"description": "FlowFocus - A productivity app built with MERN stack",
"main": "server/server.js",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"build": "cd client && npm run build",
"start": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"client:dev": "cd client && npm run dev",
"format": "prettier --write .",
"test": "cd server && npm test && cd ../client && npm test"
},
"keywords": [
"productivity",
"mern",
"react",
"express",
"mongodb"
],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.5.3"
}
}