This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "nautilus-wallet",
"version": "v1.3.0",
"private": true,
"description": "Desktop wallet for Helix",
"license": "Apache-2.0 OR EPL-2.0",
"author": "Helix Foundation",
"repository": {
"type": "git",
"url": "git+https://github.com/HelixNetwork/nautilus.git"
},
"main": "index.js",
"scripts": {
"install-app": "yarn && yarn run install-desktop && yarn run install-shared",
"install-desktop": "cd src/desktop && yarn",
"install-shared": "cd src/shared && yarn",
"start": "cd src/desktop && yarn run start",
"lint": "./node_modules/.bin/eslint .",
"lint:shared": "./node_modules/.bin/eslint src/shared/",
"lint:desktop": "./node_modules/.bin/eslint src/desktop/",
"format": "prettier --write \"**/*.{js,json,css}\""
},
"lint-staged": {
"*.{json,css}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"homepage": "https://hlx.ai",
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-react-native": "^3.7.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2"
},
"dependencies": {},
"resolutions": {
"request": ">=2.88.0",
"node.extend": ">=1.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}