-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 KB
/
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
32
33
34
35
36
37
38
39
40
{
"name": "flexiboard-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "per-env",
"start:production": "node server.js",
"start:development": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"server": "nodemon server.js",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dproc96/flexiboard.git"
},
"author": "Dan Proctor",
"license": "ISC",
"bugs": {
"url": "https://github.com/dproc96/flexiboard/issues"
},
"homepage": "https://github.com/dproc96/flexiboard#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.6",
"per-env": "^1.0.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}