-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 3.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"private": true,
"name": "@react-native-ama/monorepo",
"version": "1.0.1-alpha.2",
"description": "Accessibility as a First-Class Citizen with React Native AMA",
"repository": "https://github.com/FormidableLabs/react-native-ama.git",
"homepage": "https://commerce.nearform.com/open-source/react-native-ama/",
"scripts": {
"playground": "cd playground && yarn start",
"playground:ios": "cd playground && yarn ios",
"playground:android": "cd playground && yarn android",
"playground:build:ios": "cd playground && npm run build:ios",
"playground:build:android": "cd playground && npm run build:android",
"playground:build": "cd playground && npm run build",
"build:animations": "yarn workspace @react-native-ama/animations build",
"build:core": "yarn workspace @react-native-ama/core build",
"build:bottom-sheet": "yarn workspace @react-native-ama/bottom-sheet build",
"build:forms": "yarn workspace @react-native-ama/forms build",
"build:lists": "yarn workspace @react-native-ama/lists build",
"build:website": "cd website && yarn build",
"build": "yarn build:core && yarn build:animations && yarn build:forms && yarn build:lists && yarn build:bottom-sheet",
"doc": "cd website && yarn start",
"ts:check": "tsc --noEmit",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore ./packages",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore ./packages --fix",
"version": "yarn changeset version && yarn install --no-frozen-lockfile",
"prettier": "yarn prettier --write 'packages/**/*.{js,jsx,ts,tsx}'",
"test:core": "yarn workspace @react-native-ama/core test",
"test:animations": "yarn workspace @react-native-ama/animations test",
"test:forms": "yarn workspace @react-native-ama/forms test",
"test:lists": "yarn workspace @react-native-ama/lists test",
"test:bottom-sheet": "yarn workspace @react-native-ama/bottom-sheet test",
"test": "yarn test:core && yarn test:animations && yarn test:forms && yarn test:lists && yarn test:bottom-sheet",
"test:coverage": "yarn test:core --coverage && yarn test:animations --coverage && yarn test:forms --coverage && yarn test:lists --coverage && yarn test:bottom-sheet --coverage"
},
"workspaces": [
"packages/animations",
"packages/core",
"packages/bottom-sheet",
"packages/forms",
"packages/lists",
"packages/react-native"
],
"resolutions": {
"@babel/core": "^7.26.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@react-native/eslint-config": "^0.76.3",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@testing-library/react-native": "^12.3.0",
"@types/jest": "^29.5.10",
"@types/node": "^24.0.15",
"@types/react": "~19.0.0",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.1",
"expo": "~53.0.0",
"expo-module-scripts": "^4.1.6",
"husky": "^8.0.1",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native": "0.79.1",
"react-native-gesture-handler": "~2.24.0",
"react-native-reanimated": "~3.17.4",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3"
},
"peerdependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"packageManager": "yarn@3.6.4"
}