-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "hypervault-resouceserver",
"version": "0.1.0",
"description": "Resource Server in hypervault",
"main": "server.js",
"scripts": {
"dev": "nodemon --ext js,njk server.js --dev",
"test": "mocha -t 0 --recursive --exit",
"deploy": "git checkout master; git push; ssh ubuntu@resourceserver.hypervault.tech \"bash -s\" -- <./_scripts/deploy.sh",
"start": "pm2 stop resourceServer;pm2 start server.js --name=\"resourceServer\";sudo cp ./resourceserver2.hypervault.tech.conf /etc/nginx/conf.d/resourceserver2.hypervault.tech.conf;sudo systemctl restart nginx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lixiii/hypervault-resouceServer.git"
},
"author": "hypervault",
"license": "ISC",
"bugs": {
"url": "https://github.com/lixiii/hypervault-resouceServer/issues"
},
"homepage": "https://github.com/lixiii/hypervault-resouceServer#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"hasha": "^3.0.0",
"mkdirp": "^0.5.1",
"multer": "^1.4.1",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"mocha": "^5.2.0"
}
}