-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.41 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
41
42
43
{
"name": "knownsense",
"version": "1.0.0",
"description": "This is the initiated README for team knownsense, Please edit this as you build your project",
"main": "server.js",
"scripts": {
"start": "concurrently \"node server.js\" \"peerjs --port 3001\"",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" \"peerjs --port 3001\"",
"installdev": "npm install && npm install -g peerjs",
"installcli": "cd client && npm install",
"heroku-postbuild": "npm install -g peerjs && cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HAC-2020/knownsense.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HAC-2020/knownsense/issues"
},
"homepage": "https://github.com/HAC-2020/knownsense#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.27",
"nodemon": "^2.0.4",
"socket.io": "^2.3.0",
"solc": "^0.4.17",
"truffle-hdwallet-provider": "0.0.3",
"uuid": "^8.3.0",
"web3": "^1.2.11"
}
}