-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 980 Bytes
/
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
{
"name": "@native-base/babel-plugin",
"version": "1.0.13",
"description": "A babel plugin to add Build time theme resolution for Nativebase",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cd example && rm -rf .expo .native-base && yarn start",
"dev:web": "cd example && rm -rf .expo .native-base && yarn web",
"dev:android": "cd example && rm -rf .expo .native-base && yarn android",
"dev:ios": "cd example && rm -rf .expo .native-base && yarn ios",
"build": "babel index.js -d lib",
"prepare": "yarn build && yarn version"
},
"author": "Rohit Singh",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.6"
},
"peerDependencies": {
"native-base": "*"
},
"devDependencies": {
"@babel/generator": "^7.19.6",
"@babel/preset-env": "^7.18.9",
"native-base": "3.5.0-rc.5"
},
"engines": {
"node": ">=10.24.1"
}
}