-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "@onflowser/flowser",
"private": true,
"description": "Easily inspect and debug Flow blockchain ⛓",
"scripts": {
"build-electron": "turbo run build-electron",
"build-web": "turbo run build-web",
"dev": "turbo run dev --parallel",
"compile": "turbo run compile",
"lint": "turbo run lint",
"format": "turbo run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onflowser/flowser.git"
},
"keywords": [
"flow",
"onflow",
"blockchain",
"development-tool"
],
"author": "@bartolomej, @jgololicic, @monikaxh",
"license": "ISC",
"bugs": {
"url": "https://github.com/onflowser/flowser/issues"
},
"homepage": "https://github.com/onflowser/flowser#readme",
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.5.1",
"turbo": "1.10.4"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "yarn@1.22.19",
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"nohoist": ["apps/electron"]
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "6.16.0"
}
}