-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
31 lines (31 loc) · 959 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
27
28
29
30
31
{
"name": "project-management-app",
"version": "1.0.0",
"description": "A FullStack MERN application with GraphQL Server/Client.",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"server": "nodemon server/index.js --ignore client",
"client": "npm start --prefix client",
"build": "npm run --prefix ./website build",
"serve": "npm run --prefix ./website serve",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"keywords": [],
"author": "Mohammad Arif",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"concurrently": "^7.3.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"mongoose": "^6.3.5"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}