forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.75 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
{
"name": "trezor-suite",
"version": "21.1.0",
"private": true,
"repository": "https://github.com/trezor/trezor-suite.git",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"node": ">=12",
"yarn": ">=1.22.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/babel-jest"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "yarn patch-package",
"build:libs": "lerna run build:lib",
"build:connect": "rimraf packages/suite-data/files/connect && yarn webpack --config packages/suite-data/trezor-connect.webpack.js",
"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",
"lint": "yarn lerna run lint"
},
"resolutions": {
"**/@types/react": "17.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"concurrently": "^5.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.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.2.0",
"prettier-eslint": "^12.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}