-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 3.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "productboard",
"version": "0.0.1",
"description": "Web platform for collaborative product design",
"license": "UNLICENSED",
"private": "true",
"author": {
"name": "Georg Hackenberg",
"email": "georg.hackenberg@fh-wels.at"
},
"contributors": [
{
"name": "Georg Hackenberg",
"email": "georg.hackenberg@fh-wels.at"
},
{
"name": "Christian Zehetner",
"email": "christian.zehetner@fh-wels.at"
},
{
"name": "Jürgen Humenberger",
"email": "juergen.humenberger@fh-wels.at"
},
{
"name": "Dominik Frühwirth",
"email": "dominik.fruehwirth@fh-wels.at"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ghackenberg/caddrive.git"
},
"workspaces": [
"packages/codeaster",
"packages/ldraw",
"packages/brep",
"packages/freecad",
"packages/common",
"packages/database",
"packages/broker",
"packages/backend",
"packages/worker",
"packages/frontend",
"packages/gateway"
],
"scripts": {
"clean": "workspaces-run -- npm run clean",
"build": "workspaces-run -- npm run build",
"lint": "workspaces-run -- npm run lint",
"loc": "workspaces-run -- npm run loc",
"dev": "workspaces-run --parallel --ignore=\"productboard-{ldraw,brep,freecad,codeaster,common,database}\" -- npm run dev",
"start": "workspaces-run --parallel --ignore=\"productboard-{ldraw,brep,freecad,codeaster,common,database}\" -- npm run start",
"migration:generate": "workspaces-run --only=\"productboard-database\" -- npm run migration:generate",
"migration:create": "workspaces-run --only=\"productboard-database\" -- npm run migration:create",
"migration:run": "workspaces-run --only=\"productboard-database\" -- npm run migration:run",
"migration:revert": "workspaces-run --only=\"productboard-database\" -- npm run migration:revert",
"migration:show": "workspaces-run --only=\"productboard-database\" -- npm run migration:show"
},
"dependencies": {
"@nestjs/common": "^8.1.2",
"@nestjs/core": "^8.1.2",
"@nestjs/swagger": "^5.1.4",
"@types/express": "^4.17.13",
"@types/node": "^16.18.37",
"@types/shortid": "^0.0.29",
"@types/three": "^0.150.2",
"@zip.js/zip.js": "^2.7.52",
"axios": "^0.26.1",
"jose": "^4.14.1",
"mqtt": "^4.3.7",
"mqtt-pattern": "^2.1.0",
"opencascade.js": "^2.0.0-beta.b5ff984",
"reflect-metadata": "^0.1.13",
"shortid": "^2.2.16",
"three": "^0.151.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"workspaces-run": "^1.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-regex": "^1.10.0",
"nodemon": "^2.0.22",
"sloc": "^0.2.1"
},
"engines": {
"node": "^20",
"npm": "^10"
}
}