This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
66 lines (66 loc) · 2.19 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
{
"name": "trinity-wallet",
"version": "0.0.0",
"private": true,
"url": "https://trinity.iota.org",
"homepage": "https://trinity.iota.org",
"description": "Cross-platform wallet for IOTA",
"author": "IOTA Foundation <[email protected]>",
"license": "Apache-2.0 OR EPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/trinity-wallet.git"
},
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint:mobile": "./node_modules/.bin/eslint src/mobile/",
"lint:shared": "./node_modules/.bin/eslint src/shared/",
"lint:desktop": "./node_modules/.bin/eslint src/desktop/",
"format": "prettier --write \"**/*.{js,json,css}\"",
"test:all": "cd src/shared/ && yarn test && cd ../mobile/ && yarn test && cd ../desktop/ && yarn test && cd ../",
"test:mobile": "cd src/mobile && yarn test && cd ../..",
"test:shared": "cd src/shared && yarn test && cd ../..",
"test:desktop": "cd src/desktop && yarn test && cd ../..",
"deps:shared": "cd src/shared && yarn && cd ../..",
"deps:mobile": "cd src/mobile && yarn && cd ../..",
"deps:desktop": "cd src/desktop && npm ci && cd ../..",
"start:desktop": "cd src/desktop && yarn start",
"start:mobile": "cd src/mobile && yarn start",
"start:styleguide": "cd src/desktop && yarn run styleguide",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^5.0.6",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"dependencies": {
"snyk": "^1.437.4"
},
"resolutions": {
"js-yaml": ">=3.13.1",
"request": ">=2.88.0",
"node.extend": ">=1.1.7",
"mkdirp": "^0.5.3",
"minimist": "^1.2.5 || >=0.2.1",
"lodash": ">=4.17.19",
"bl": ">=4.0.3"
},
"snyk": true
}