This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.96 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": "@buildwithsygma/sygma-ui-monorepo",
"version": "1.0.0",
"description": "Chainsafe Sygma UI monorepo",
"main": "index.js",
"repository": "https://github.com/sygmaprotocol/sygma-ui",
"author": "Chainsafe Products Team",
"license": "LGPL",
"private": true,
"engines": {
"node": ">=16.10"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*"
]
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"dependencies": {
"@buildwithsygma/sygma-sdk-core": "1.3.0",
"@changesets/cli": "^2.14.1",
"eslint": "^8.35.0",
"ethers": "5.4.5"
},
"scripts": {
"start:ui": "yarn workspace @buildwithsygma/sygma-ui start",
"start:ui:prod": "NODE_ENV=production SSM_PARAMETER_NAME=/chainbridge/chainbridge-ui-local yarn start:ui",
"build:server": "yarn workspace @buildwithsygma/sygma-ui-config-server build:server",
"start:config-server": "yarn workspace @buildwithsygma/sygma-ui-config-server start:prod",
"build:ui": "yarn workspace @buildwithsygma/sygma-ui build",
"start:basic": "yarn workspace @buildwithsygma/sygma-basic start",
"sentry:ui": "yarn workspace @buildwithsygma/sygma-ui sentry",
"release:ui": "yarn workspace @buildwithsygma/sygma-ui release",
"test:ui": "yarn workspace @buildwithsygma/sygma-ui test:ci",
"analyze:ui": "yarn workspace @buildwithsygma/sygma-ui analyze",
"clean-dependencies:ui": "yarn workspace @buildwithsygma/sygma-ui clean:dependencies",
"clean-dist:ui": "yarn workspace @buildwithsygma/sygma-ui clean:dist",
"clean:ui": "yarn workspace @buildwithsygma/sygma-ui clean",
"prettier:ui": "yarn workspace @buildwithsygma/sygma-ui prettier",
"lint:ui": "yarn workspace @buildwithsygma/sygma-ui lint",
"start-tunnel:ui": "yarn workspace @buildwithsygma/sygma-ui start:tunnel",
"postinstall": "husky install"
},
"devDependencies": {
"husky": "^8.0.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
}
}