forked from oslabs-beta/acrn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.41 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "acrn-rn",
"version": "1.0.2",
"description": "An accessibility first component library for React Native",
"keywords": [
"android",
"ios",
"react native",
"component library",
"accessibility"
],
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/acrn"
},
"license": "MIT",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"source": "src/index.tsx",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"files": [
"src",
"lib",
"babel.js"
],
"scripts": {
"android": "expo start --android",
"build-storybook": "build-storybook",
"eject": "expo eject",
"format": "prettier -w .",
"ios": "expo start --ios",
"lint": "eslint --ext '.js,.ts,.tsx' .",
"prepare": "bob build",
"start": "expo start",
"storybook": "start-storybook -p 7007",
"test": "jest",
"tsc": "tsc --noEmit",
"web": "expo start --web"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.10.3",
"@callstack/eslint-config": "^9.0.0",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.1",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react": "^6.4.20",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@storybook/testing-library": "^0.0.9",
"@testing-library/react-native": "^9.1.0",
"@types/color": "^3.0.0",
"@types/jest": "^24.0.13",
"@types/node": "^13.1.0",
"@types/react": "~17.0.21",
"@types/react-dom": "^16.8.4",
"@types/react-native": "^0.66.1",
"@types/react-native-vector-icons": "^6.4.1",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"babel-test": "^0.1.1",
"eslint": "^6.7.2",
"eslint-config-callstack-io": "^1.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react-native": "^3.5.0",
"expo": "~44.0.0",
"expo-status-bar": "~1.2.0",
"jest": "^27.5.1",
"jest-expo": "^44.0.1",
"metro-react-native-babel-preset": "^0.70.1",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-native": "0.64.3",
"react-native-builder-bob": "^0.17.1",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-testing-library": "^1.5.0",
"react-native-vector-icons": "~6.3.0",
"react-native-web": "0.17.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-vector-icons": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}