-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.85 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.85 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
56
{
"name": "aargon-ui",
"version": "1.0.0",
"description": "A collection of headless UI packages for React Native",
"license": "MIT",
"author": "Md Muhaiminul",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch --filter=!aargon-ui-example --concurrency=20",
"dev": "turbo run dev",
"dev:packages": "turbo run dev --filter=!aargon-ui-example --concurrency=20",
"dev:example": "turbo run dev --filter=aargon-ui-example",
"dev:all": "concurrently \"yarn build:watch\" \"yarn workspace aargon-ui-example start\"",
"dev:source": "yarn workspace aargon-ui-example start",
"start": "turbo run start",
"android": "turbo run android",
"ios": "turbo run ios",
"web": "turbo run web",
"web:build": "turbo run web:build",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test": "turbo run test",
"clean": "turbo run clean",
"publish:packages": "turbo run publish",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=!aargon-ui-example && changeset publish"
},
"dependencies": {
"react": "19.1.0",
"react-native": "0.81.4"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@changesets/cli": "^2.27.1",
"@types/color": "^4.2.0",
"@types/react": "~19.1.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"concurrently": "^8.2.2",
"eslint": "^9.19.0",
"eslint-config-universe": "^14.0.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"turbo": "^2.5.8",
"typescript": "~5.9.2"
},
"packageManager": "yarn@1.22.22"
}