forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "trezor-suite",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/trezor/trezor-suite.git",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": "14",
"yarn": ">=1.22.0 <2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/babel-jest"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "yarn run patch && yarn lerna run patch",
"patch": "yarn patch-package",
"build:libs": "lerna run build:lib",
"deps": "rimraf 'node_modules' '*/**/node_modules' && yarn",
"deps:update": "rimraf 'yarn.lock' 'node_modules' '*/**/node_modules' && yarn",
"suite:dev": "yarn workspace @trezor/suite-web dev",
"suite:dev:ios": "yarn workspace @trezor/suite-native dev:ios",
"suite:dev:android": "yarn workspace @trezor/suite-native dev:android",
"suite:dev:desktop": "yarn workspace @trezor/suite-desktop dev",
"suite:build:web": "yarn workspace @trezor/suite-web build",
"type-check": "yarn lerna run type-check",
"test:unit": "yarn lerna run test:unit",
"lint:js": "eslint --cache --ignore-path .gitignore --ext .js,.ts,.tsx ./",
"lint": "yarn lerna run lint:styles && yarn lint:js",
"lint-staged": "npx lint-staged",
"deduplicate": "yarn-deduplicate && yarn"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"packages/{components,suite}/**/*.{ts,tsx}": [
"stylelit --fix",
"git add"
]
},
"resolutions": {
"**/@types/react": "17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"concurrently": "^5.1.0",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"patch-package": "^6.2.1",
"postinstall-postinstall": "^2.0.0",
"prettier": "2.3.2",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^10.3.0",
"tsconfig-paths": "^3.9.0",
"typescript": "4.4.4",
"yarn-deduplicate": "^3.1.0"
}
}