-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "developesfb",
"version": "1.0.0",
"description": "social network for developers",
"main": "server.js",
"scripts": {
"start": "node server",
"transpile": "babel server.js --out-file dist-server.js",
"nodemon_server": "nodemon dist-server",
"clean": "rimraf dist-server.js",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhisheksingh75/DevelopersFaceBook.git"
},
"author": "\"Abhishek Singh\"",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhisheksingh75/DevelopersFaceBook/issues"
},
"homepage": "https://github.com/abhisheksingh75/DevelopersFaceBook#readme",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"bcryptjs": "^2.4.3",
"config": "^3.2.6",
"create-react-app": "^3.4.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"gravatar": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.2",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"request": "^2.88.2",
"rimraf": "^3.0.2"
},
"devDependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
}
}