-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "modularcloud",
"version": "0.0.0",
"private": true,
"homepage": "https://explorer.modular.cloud",
"description": "A block exporer for modular blockchains.",
"author": {
"name": "Liam Cardenas",
"email": "[email protected]"
},
"productName": "Modular Cloud Explorer",
"workspaces": [
"apps/*",
"packages/*",
"packages/@modularcloud/*",
"resolver/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write .",
"check": "prettier --check .",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"commitlint": "^18.6.1",
"commitlint-config-gitmoji": "^2.3.1",
"electron": "29.1.4",
"eslint-config-custom": "*",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"turbo": "^1.12.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@todesktop/runtime": "^1.6.1",
"electron-log": "^5.1.2"
}
}