-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.32 KB
/
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
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
{
"name": "binocular",
"version": "2.0.0",
"description": "",
"scripts": {
"postinstall": "npm run install:backend && npm run install:frontend",
"install:backend": "cd binocular-backend && npm install",
"install:frontend": "cd binocular-frontend && npm install",
"dev": "npm run dev:backend & npm run dev:frontend",
"dev:concurrently": "concurrently --kill-others -P 'npm run dev:frontend' 'npm run dev:backend' --",
"dev:backend": "cd binocular-backend && npm run dev",
"dev:frontend": "cd binocular-frontend && npm run dev",
"dev:frontend-debug": "cd binocular-frontend && npm run dev:debug",
"check": "npm run check:backend && npm run check:frontend",
"check:backend": "cd binocular-backend && npm run check",
"check:frontend": "cd binocular-frontend && npm run check",
"fix": "npm run fix:backend && npm run fix:frontend",
"fix:backend": "cd binocular-backend && npm run fix",
"fix:frontend": "cd binocular-frontend && npm run fix",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd binocular-backend && npm run test",
"test:frontend": "cd binocular-frontend && npm run test",
"coverage": "npm run coverage:backend && npm run coverage:frontend && npm run collect-coverage",
"coverage:backend": "cd binocular-backend && npm run coverage",
"coverage:frontend": "cd binocular-frontend && npm run coverage",
"collect-coverage": "./scripts/collect-coverage.js",
"build:dev": "cd binocular-frontend && npm run build:dev",
"build:prod": "cd binocular-frontend && npm run build:prod",
"build:offline": "cd binocular-frontend && npm run build:offline",
"build:offline-windows": "cd binocular-frontend && npm run build:offline-windows"
},
"repository": {
"type": "git",
"url": "https://github.com/INSO-TUWien/Binocular.git"
},
"bin": {
"binocular": "/binocular-backend/index.js"
},
"contributors": [
{
"name": "Roman Decker",
"email": "[email protected]"
},
{
"name": "Johann Grabner"
},
{
"name": "Julian Kotrba"
},
{
"name": "Alexander Nemetz-Fiedler"
},
{
"name": "Michael Thurner"
},
{
"name": "Maximilian Zenz"
},
{
"name": "Raphael Lackner"
}
],
"devDependencies": {
"concurrently": "^8.2.2"
}
}