This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "risk-tool-repo",
"version": "0.0.0",
"private": true,
"type": "commonjs",
"author": "Akuqt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Akuqt/risk-tool.git"
},
"bugs": {
"url": "https://github.com/Akuqt/risk-tool/issues"
},
"homepage": "https://github.com/Akuqt/risk-tool#readme",
"workspaces": [
"apps/*",
"packages/*",
"scripts/*"
],
"scripts": {
"test": "turbo run test --parallel",
"test:staged": "turbo run test:staged --parallel --",
"dev": "turbo run dev --parallel",
"clean": "cd scripts/clean && yarn clean && yarn",
"build": "turbo run build",
"start:rn": "cd apps/mobile && yarn start",
"android": "cd apps/mobile && yarn android",
"build:rn": "cd apps/mobile/android && gradlew assembleRelease",
"gen:route": "cd scripts/routes && yarn gen:route",
"gen:page": "cd scripts/pages && yarn gen:page",
"lint": "eslint . --ext .js,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@react-native-community/eslint-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"turbo": "latest",
"typescript": "^4.5.5"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}