-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 934 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 934 Bytes
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
{
"name": "offero.tech",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm-run-all -p dev-www dev-server dev-proxy",
"dev": "nodemon --inspect=5679 proxy.js",
"dev-server": "cd api; nodemon --inspect=5678 server.js",
"dev-proxy": "nodemon --inspect=5679 proxy.js",
"dev-www": "cd www; npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offero/offero.tech.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/offero/offero.tech/issues"
},
"homepage": "https://github.com/offero/offero.tech#readme",
"dependencies": {
"dotenv": "^7.0.0",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"isomorphic-unfetch": "^3.0.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5"
},
"devDependencies": {}
}