forked from Chia-Network/chia-blockchain-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.52 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
54
55
56
57
58
59
60
61
62
63
{
"name": "root",
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"version:major": "lerna version major",
"version:minor": "lerna version minor",
"version:patch": "lerna version patch",
"publish": "lerna publish",
"postinstall": "npm run bootstrap && npm run prettier:postinstall",
"prettier:postinstall": "prettier --write **/package.json **/package-lock.json",
"check": "npm run check:lint ; npm run check:prettier ; npm run check:types",
"check:lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"check:prettier": "prettier --check --ignore-path .gitignore .",
"check:types": "lerna exec --scope '{@chia-network/api,@chia-network/api-react,@chia-network/icons}' -- npm run check:types",
"check:typesEverywhere": "lerna exec -- npm run check:types",
"autofix": "npm run autofix:lint ; npm run autofix:prettier",
"autofix:lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"autofix:prettier": "prettier --write --ignore-path .gitignore .",
"build": "lerna run build",
"build:skipLocales": "lerna run build:js",
"build:ci": "lerna run build:ci",
"build:watch": "lerna run build:watch",
"start:gui": "lerna run start --scope @chia-network/gui",
"dev:gui": "lerna run dev --scope @chia-network/gui --stream",
"electron": "npm run start:gui",
"locale:extract": "lerna run locale:extract",
"locale:clean": "lerna run locale:clean",
"locale": "lerna run locale",
"audit": "lerna exec -- npm audit",
"audit:fix": "lerna exec -- npm audit fix",
"test": "lerna run test --stream -- -- --passWithNoTests --coverage",
"restoreMessages": "node restoreMessages.js",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*": "prettier --check --ignore-unknown --ignore-path .gitignore"
},
"dependencies": {
"lerna": "^5.1.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.30.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "45.0.2",
"lerna-audit": "^1.3.3",
"lint-staged": "13.1.2",
"prettier": "2.8.1",
"typescript": "^4.9.4",
"husky": "8.0.0"
},
"version": "1.2.10-dev132"
}