-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 903 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 903 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
33
34
35
{
"name": "spawner",
"version": "1.0.0",
"description": "a mern app which creates backend apps",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js --ignore apps/*",
"format": "node ./scripts/format.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"spawn",
"spawner"
],
"author": "Rohan Dutt",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.5.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"js-beautify": "^1.14.0",
"mongoose": "^5.11.9",
"mongoose-autopopulate": "^0.12.3",
"nodemon": "^2.0.6"
}
}