-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "@iqrf/iqrf-gateway-webapp-monorepo",
"private": true,
"author": {
"name": "MICRORISC s.r.o.",
"url": "https://www.microrisc.com/"
},
"contributors": [
{
"name": "Roman Ondráček",
"email": "[email protected]",
"url": "https://www.romanondracek.cz/"
},
{
"name": "Karel Hanák",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"homepage": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp",
"bugs": {
"url": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp/issues"
},
"repository": {
"type": "git",
"url": "https://gitlab.iqrf.org/open-source/iqrf-gateway-webapp.git"
},
"scripts": {
"build": "pnpm --dir packages/api-client build && pnpm --dir packages/frontend build",
"coverage:unit": "vitest --run --coverage",
"lint": "pnpm -r lint",
"publish": "pnpm -r publish",
"newman": "newman run tests/iqrf-gateway-webapp.postman_collection.json",
"test": "vitest --run"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^22.9.0",
"@vitest/coverage-istanbul": "^2.1.5",
"pnpm": "^9.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
}