-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.38 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
{
"name": "cryptify",
"packageManager": "yarn@3.2.3",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"client:web:dev": "yarn workspace @cryptify/client web",
"client:android:dev": "yarn workspace @cryptify/client android",
"client:ios:dev": "yarn workspace @cryptify/client ios",
"client:test:unit": "yarn workspace @cryptify/client test:unit",
"api:dev": "yarn workspace @cryptify/api start:dev",
"api:test": "yarn workspace @cryptify/api test",
"eth-edge:dev": "yarn workspace @cryptify/eth-edge start:dev",
"eth-edge:test": "yarn workspace @cryptify/eth-edge test",
"btc-edge:dev": "yarn workspace @cryptify/btc-edge start:dev",
"btc-edge:test": "yarn workspace @cryptify/btc-edge test",
"lint:check": "eslint '*/**/*.{js,jsx,ts,tsx,json}' --max-warnings=0",
"lint:fix": "eslint '*/**/*.{js,jsx,ts,tsx,json}' --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.5.1",
"sonarqube-scanner": "^2.8.2"
},
"dependencies": {
"react-native-email-link": "^1.14.5"
}
}