-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lxdhub",
"version": "1.9.0",
"description": "Display, search and copy LXD-images using a web interface.",
"private": true,
"scripts": {
"lint": "npm run lint:api && npm run lint:db && npm run lint:dbsync && npm run lint:common",
"lint:api": "tslint -c tslint.json 'src/api/*.ts'",
"lint:db": "tslint -c tslint.json 'src/db/*.ts'",
"lint:common": "tslint -c tslint.json 'src/common/*.ts'",
"lint:dbsync": "tslint -c tslint.json 'src/dbsync/*.ts'",
"start": "node bin/start.js",
"start:api": "lerna exec npm run start --scope @lxdhub/api",
"start:dbsync": "lerna exec npm run start --scope @lxdhub/dbsync",
"test": "npm run test:api",
"test:api": "lerna exec npm run test --scope @lxdhub/api",
"build:api": "lerna exec yarn run build --scope @lxdhub/api",
"build:dbsync": "lerna exec yarn run build --scope @lxdhub/dbsync",
"build:db": "lerna exec yarn run build --scope @lxdhub/db",
"clean": "rimraf packages/**/lib packages/**/src/**/*{.d.ts,.js,.map}",
"bootstrap": "lerna bootstrap",
"prepare": "lerna run prepare"
},
"devDependencies": {
"@types/node": "12.7.1",
"lerna": "3.16.4",
"rimraf": "2.6.3",
"tslint": "5.18.0",
"typescript": "3.5.3",
"js-yaml": "3.13.1",
"fs-extra": "8.1.0"
},
"dependencies": {
"@lxdhub/web": "1.10.0",
"express": "4.17.1",
"minimist": "1.2.0",
"sqlite3": "4.0.9"
},
"license": "Apache-2.0",
"keywords": [
"lxd",
"lxc",
"lxdhub",
"container"
],
"homepage": "https://github.com/Roche/lxdhub#README.md",
"bugs": {
"url": "https://github.com/Roche/lxdhub/issues",
"email": "livio.brunner.lb1@roche.com"
},
"author": {
"email": "livio.brunner.lb1@roche.com",
"name": "Livio Brunner",
"url": "https://brunnerliv.io"
},
"repository": {
"type": "git",
"url": "https://github.com/Roche/lxdhub"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@nestjs/",
"**/@nestjs/**",
"**/typeorm/",
"**/typeorm/**"
]
}
}