-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 948 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 948 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
34
35
36
{
"name": "smsbox",
"version": "0.0.1",
"description": "Open source sms service with billing, routing and more.",
"keywords": [
"smsbox"
],
"author": "Bulktrade GmbH",
"homepage": "https://github.com/bulktrade/SMSBOX",
"license": "Apache-2.0",
"scripts": {
"prebuild": "cd modules/backend && npm install && cd ../client && npm install && cd ..",
"build": "cd modules/client && npm run build:aot:universal:prod",
"build:docker": "npm run build && docker build -t smsbox:latest .",
"docker": "docker"
},
"dependencies": {
"express": "^4.14.0",
"http-proxy": "^1.16.2",
"http-proxy-middleware": "^0.17.3"
},
"devDependencies": {
"http-proxy": "^1.16.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bulktrade/SMSBOX.git"
},
"bugs": {
"url": "https://github.com/bulktrade/SMSBOX/issues"
},
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
}
}