-
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) · 713 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 713 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": "mern-task-management-system",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"build": "npm install && npm install --prefix client && npm run build --prefix client",
"build-be": "npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"colors": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"mongoose": "^8.3.2"
},
"devDependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.0"
}
}