-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.59 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
53
{
"name": "llavero",
"version": "0.1.1",
"description": "My Hardware Wallet as MY Service",
"main": "index.js",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "yarn workspace web build",
"deploy": "yarn workspace web deploy",
"telemetry-disable": "yarn workspace web telemetry-disable",
"start": "yarn workspace web start",
"start-sst": "yarn workspace web start-sst",
"dev": "yarn workspace web dev",
"dev-sst": "yarn workspace web dev-sst",
"dev-next": "yarn workspace web dev-next",
"desktop": "yarn workspace desktop start",
"cdk-deploy": "npm run deploy -w libs/cdk-deploy",
"cdk-synth": "npm run synth -w libs/cdk-deploy",
"cdk-build": "npm run build -w libs/cdk-deploy",
"cdk-bootstrap": "npm run bootstrap -w libs/cdk-deploy",
"install-sst": "yarn workspace installer install-sst",
"prepare": "husky install"
},
"author": "Mariano Julio Vicario",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
}
}