-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
60 lines (60 loc) · 2.65 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
{
"private": true,
"license": "BSD-3-Clause",
"workspaces": [
"lib",
"web",
"native",
"keyserver",
"landing",
"desktop",
"keyserver/addons/rust-node-addon",
"native/expo-modules/comm-expo-package",
"services/electron-update-server",
"web/opaque-ke-wasm"
],
"scripts": {
"clean": "yarn workspace lib clean && yarn workspace web clean && yarn workspace native clean && yarn workspace keyserver clean && yarn workspace landing clean && yarn workspace desktop clean && yarn workspace rust-node-addon clean && yarn workspace electron-update-server clean && rm -rf node_modules/",
"cleaninstall": "(killall flow || pkill flow || true) && yarn clean && yarn",
"ci-cleaninstall": "yarn cleaninstall --frozen-lockfile --skip-optional --network-timeout 180000",
"eslint:all": "eslint --report-unused-disable-directives .",
"eslint:fix": "eslint --fix --report-unused-disable-directives .",
"clang-format-all": "eval `node scripts/get-clang-paths-cli.js` | xargs clang-format -i",
"rust-pre-commit": "./scripts/rust_pre_commit.sh",
"terraform-pre-commit": "./scripts/terraform_pre_commit.sh",
"prepare": "husky install",
"arcpatch": "git pull --all --tags && arc patch",
"postinstall": "bash ./postinstall.sh",
"flow:all": "yarn workspace lib flow && yarn workspace web flow && yarn workspace landing flow && yarn workspace native flow && yarn workspace keyserver flow && yarn workspace desktop flow && yarn workspace electron-update-server flow",
"jest:all": "yarn workspace lib test && yarn workspace keyserver test && yarn workspace web test && yarn workspace native test",
"docker-build-push:identity": "./scripts/docker-build-push-identity.sh"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@stylistic/eslint-plugin-js": "^1.5.3",
"clang-format": "^1.8.0",
"core-js": "^3.6.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-unicorn": "^51.0.1",
"find-up": "^5.0.0",
"flow-mono-cli": "^1.5.0",
"gaxios": "^4.3.2",
"husky": "^7.0.0",
"lint-staged": "^12.1.4",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.0.0",
"prettier": "^3.1.1"
},
"resolutions": {
"react-native-flipper": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.1.tgz"
}
}