-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "flowcrypt-ios",
"version": "1.0.0",
"description": "Flowcrypt iOS app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowCrypt/flowcrypt-ios.git"
},
"author": "Flowcrypt",
"license": "ISC",
"bugs": {
"url": "https://github.com/FlowCrypt/flowcrypt-ios/issues"
},
"homepage": "https://github.com/FlowCrypt/flowcrypt-ios#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"git-format-staged": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.1",
"prettier": "^3.1.1"
},
"lint-staged": {
"*.ts": [
"npx eslint --fix",
"npx eslint",
"prettier --write"
]
}
}