-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 869 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 869 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
29
30
31
32
{
"name": "@statusneo/mern-stack",
"version": "1.0.6",
"description": "Learning MERN Stack by creating a simple shopping application",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/statusneo/mern-stack.git"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build --prefix client"
},
"author": "Nishkarsh Raj",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^6.2.0",
"express": "^4.17.1",
"mongoose": "^6.0.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}