-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 2.06 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
{
"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": {
"example:bare": "yarn --cwd examples/bare",
"example:expo": "yarn --cwd examples/expo",
"build:animations": "yarn workspace @react-native-ama/animations build",
"build:core": "yarn workspace @react-native-ama/core build",
"build:extras": "yarn workspace @react-native-ama/extras build",
"build:forms": "yarn workspace @react-native-ama/forms build",
"build:internal": "yarn workspace @react-native-ama/internal build",
"build:lists": "yarn workspace @react-native-ama/lists build",
"build:react-native": "yarn workspace @react-native-ama/react-native build",
"pods": "cd examples/bare && pod-install --quiet",
"doc": "cd website && yarn start",
"ts:check": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx ./packages",
"version": "yarn changeset version && yarn install --no-frozen-lockfile",
"build": "yarn build:internal && yarn build:core && yarn build:animations && yarn build:react-native && yarn build:extras && yarn build:forms && yarn build:lists"
},
"workspaces": [
"packages/animations",
"packages/core",
"packages/extras",
"packages/forms",
"packages/internal",
"packages/lists",
"packages/react-native",
"examples/bare",
"examples/expo",
"examples/shared"
],
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@ianvs/prettier-plugin-sort-imports": "^3.4.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@testing-library/react-native": "^12.3.0",
"@types/jest": "^29.5.10",
"eslint": "8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^8.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3"
},
"packageManager": "[email protected]"
}