-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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": "relatable-daw",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm install --only=dev --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lbodwell/Relatable-DAW.git"
},
"author": "Luke Bodwell",
"license": "ISC",
"bugs": {
"url": "https://github.com/lbodwell/Relatable-DAW/issues"
},
"homepage": "https://github.com/lbodwell/Relatable-DAW#readme",
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"google-auth-library": "^7.2.0",
"helmet": "^4.6.0",
"method-override": "^3.0.0",
"mongoose": "^5.12.14",
"morgan": "^1.10.0",
"socket.io": "^4.1.2"
}
}