-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "@relaycorp/awala-gateway-desktop",
"version": "1.0.0",
"description": "Awala Gateway for Desktop",
"scripts": {
"prebuild": "run-s clean",
"build": "lerna run build",
"prestart": "run-s build",
"start": "lerna run --scope ui start",
"bootstrap": "lerna bootstrap",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"packages/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"static-checks": "run-p static-checks:*",
"static-checks:lint": "tslint --project .",
"static-checks:prettier": "prettier \"packages/**/*.ts\" --list-different",
"test": "lerna run test",
"clean": "lerna run clean"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@relaycorp/shared-config": "^1.9.1",
"@semantic-release/exec": "^6.0.2",
"lerna": "^6.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"prettier": "@relaycorp/shared-config/.prettierrc.json",
"repository": {
"type": "git",
"url": "git+https://github.com/relaycorp/awala-gateway-desktop.git"
},
"author": {
"email": "no-reply@relaycorp.tech",
"name": "Relaycorp, Inc.",
"url": "https://relaycorp.tech/"
},
"license": "GPL-3.0",
"private": "true"
}