-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
31 lines (29 loc) · 944 Bytes
/
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
{
"name": "idp",
"version": "1.0.0",
"description": "ID Server for Darb.io",
"directories": {
"test": "tests"
},
"scripts": {
"start": "npm-run-all --parallel ui api",
"ui": "cd src/ui && npm start",
"api": "cd src/api && npm start",
"deploy": "npm-run-all deploy:api deploy:ui",
"deploy:ui": "cd src/ui && npm run deploy",
"deploy:api": "cd src/api && npm run deploy",
"deploy:dev": "npm-run-all deploy:api:dev deploy:ui:dev",
"deploy:ui:dev": "cd src/ui && npm run deploy:dev",
"deploy:api:dev": "cd src/api && npm run deploy:dev"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/darbio/idp.git"
},
"author": "Darb.io (http://darb.io)",
"license": "ISC",
"homepage": "https://bitbucket.org/darbio/idp#readme",
"devDependencies": {
"npm-run-all": "^4.1.3"
}
}