-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "react-native-sandbox-monorepo",
"version": "0.1.19",
"private": true,
"description": "A sandbox environment for building, documenting, and presenting components in React Native",
"repository": {
"type": "git",
"url": "git+https://github.com/rpenfold/react-native-sandbox.git"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"publish": "npm publish --workspaces",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"bin": {
"sandbox-loader": "scripts/loadSandboxes.cjs"
},
"workspaces": [
"core",
"plugins/*"
],
"peerDependencies": {
"react": ">=16",
"react-native": ">=0.60"
},
"keywords": [
"sandbox",
"components",
"react-native"
],
"author": "Ryan Penfold",
"license": "ISC",
"dependencies": {
"react-native-collapsible": "1.6.0"
},
"devDependencies": {
"@types/react": "18.0.20",
"@types/react-native": "0.70.3",
"glob": "7.1.6",
"typescript": "4.8.3"
},
"bugs": {
"url": "https://github.com/rpenfold/react-native-sandbox/issues"
},
"homepage": "https://github.com/rpenfold/react-native-sandbox#readme"
}