-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.73 KB
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
{
"name": "assertive-ts",
"description": "The Assertive.ts workspace",
"repository": "git@github.com:stackbuilders/assertive-ts.git",
"homepage": "https://stackbuilders.github.io/assertive-ts/",
"author": "Stack Builders <info@stackbuilders.com>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.1.0",
"workspaces": [
"packages/*",
"examples/*"
],
"resolutions": {
"tar": "7.5.22"
},
"scripts": {
"check": "turbo check && yarn lint",
"clean": "rimraf **/.turbo/ **/build/ **/dist/ **/node_modules/",
"build": "turbo run build",
"compile": "turbo run compile",
"docs": "turbo docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "turbo release --concurrency=1",
"test": "turbo run test"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@react-native-community/cli": "20.1.0",
"@react-native-community/cli-platform-android": "20.1.0",
"@react-native-community/cli-platform-ios": "20.1.0",
"@react-native/babel-preset": "0.84.0",
"@react-native/eslint-config": "0.84.0",
"@react-native/metro-config": "0.84.0",
"@react-native/new-app-screen": "0.84.0",
"@react-native/typescript-config": "0.84.0",
"@stylistic/eslint-plugin": "^5.6.1",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.2.1",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-sonarjs": "^3.0.5",
"globals": "^16.5.0",
"react-native-safe-area-context": "^5.5.2",
"rimraf": "^6.1.2",
"turbo": "^1.12.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
}
}