-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"name": "phacer",
"version": "1.0.0",
"description": "A Twitter clone built with the MERN stack",
"main": "app.js",
"engines": {
"node": "11.2.0",
"npm": "6.4.1"
},
"scripts": {
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend",
"start": "node app.js",
"server": "nodemon app.js",
"debug": "node --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\""
},
"author": "Trevor Uptain",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"crypto-js": "^3.1.9-1",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.15",
"node-sass": "^4.11.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"phaser-ce": "^2.12.0",
"pretty-ms": "^4.0.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"validator": "^10.9.0"
},
"devDependencies": {
"nodemon": "^1.18.7"
}
}