-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "gemwallet-extension",
"version": "1.0.0",
"description": "Monorepo related to the GemWallet extension",
"private": true,
"repository": "https://github.com/GemWallet/gemwallet-extension.git",
"scripts": {
"build": "yarn workspace @gemwallet/extension build",
"build:api:cdn": "yarn workspace @gemwallet/api build:cdn",
"build:api:npm": "yarn workspace @gemwallet/api build:npm",
"cypress": "yarn workspace @gemwallet/extension cypress:e2e",
"lint": "eslint --cache --quiet --fix",
"prepare": "husky install",
"prettier": "prettier --write **/*.{js,ts,tsx}",
"release:api:npm": "cd packages/api/dist && npm publish --access=public",
"start": "yarn workspace @gemwallet/extension dev",
"start:api": "yarn workspace @gemwallet/api start",
"test": "TZ=UTC yarn workspaces run test"
},
"author": "GemWallet",
"bugs": {
"url": "https://github.com/GemWallet/gemwallet-extension/issues"
},
"homepage": "https://github.com/GemWallet/gemwallet-extension#readme",
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "^3.2.4"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --quiet --fix"
],
"**/*.{json,md,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.11.1",
"npm": ">=10.2.4",
"yarn": "^1.22.5"
}
}