-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "@oursky/react-native-oursky",
"version": "2.0.0",
"main": "dist/index.cjs.js",
"files": [
"dist",
"index.d.ts"
],
"license": "MIT",
"scripts": {
"prepublish": "yarn run format && yarn run typecheck && yarn run build",
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"format": "prettier --write --list-different 'src/**/*.js' index.d.ts"
},
"peerDependencies": {
"react": ">=16.3",
"react-native": ">=0.50",
"react-native-dialogs": "^1.0.0",
"@react-native-picker/picker": "^2.4.8"
},
"devDependencies": {
"@oursky/react-native-javascript-environment-typescript": "0.1.0",
"@types/react": "16.7.18",
"@types/react-native": "0.57.25",
"@types/react-navigation": "3.0.3",
"prettier": "1.15.3",
"react": "16.6.1",
"react-native": "0.57.7",
"react-navigation": "3.0.5",
"rollup": "1.0.1",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-typescript": "1.0.0",
"tslib": "1.9.3",
"typescript": "3.8.3"
},
"dependencies": {
"@react-native-picker/picker": "^2.4.8"
}
}