-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "react-native-design-mode",
"version": "2.1.27",
"description": "Design mode for React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "mocha --reporter spec",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/murat-mehmet/react-native-design-mode.git"
},
"bin": {
"designer": "./cli/designer.js"
},
"keywords": [
"react",
"native",
"console"
],
"author": "murat-mehmet",
"license": "MIT",
"bugs": {
"url": "https://github.com/murat-mehmet/react-native-design-mode/issues"
},
"homepage": "https://github.com/murat-mehmet/react-native-design-mode#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@react-native-async-storage/async-storage": "^1.x",
"@types/react": "~16.9.35",
"@types/react-native": "^0.64",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"react": ">=17",
"react-native": ">=0.70",
"react-native-gesture-handler": "^2.x",
"react-native-reanimated": ">=2.x",
"react-native-safe-area-context": "^4.x",
"typescript": ">=3"
},
"resolutions": {
"@types/react": "^16"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-safe-area-context": "^4",
"@react-native-async-storage/async-storage": "^1",
"react-native-gesture-handler": ">=2",
"react-native-reanimated": ">=2"
},
"dependencies": {
"commander": "^11",
"glob": "^10",
"prettier": "^2"
}
}