-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.69 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
{
"name": "heyou-library",
"version": "1.0.5",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/heyouapp/heyou-library.git"
},
"scripts": {
"prepare": "yarn build",
"prebuild": "rm -rf lib",
"build": "yarn build:types && yarn build:js",
"build:types": "ttsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" -D --source-maps inline",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"sb": "start-storybook -p 9009 -s public",
"sb:build": "build-storybook -s public",
"sb:deploy": "storybook-to-ghpages"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"@expo/vector-icons": "^10.2.0",
"@unimodules/core": "^5.1.2",
"@unimodules/react-native-adapter": "^5.2.0",
"date-fns": "^2.12.0",
"expo-blur": "~8.0.0",
"expo-font": "^8.1.1",
"expo-linear-gradient": "^8.0.0",
"lottie-ios": "3.1.3",
"lottie-react-native": "^3.3.2",
"password-sheriff": "^1.1.0",
"react-intl": "^4.3.1",
"react-lottie": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@expo/webpack-config": "^0.10.11",
"@react-native-community/eslint-config": "^0.0.5",
"@sambego/storybook-state": "^2.0.1",
"@storybook/addon-actions": "^5.3.8",
"@storybook/addon-info": "^5.3.8",
"@storybook/addon-links": "^5.3.8",
"@storybook/addon-storysource": "^5.3.9",
"@storybook/addons": "^5.3.8",
"@storybook/preset-typescript": "^1.2.0",
"@storybook/react": "^5.3.8",
"@storybook/storybook-deployer": "^2.8.1",
"@types/react": "^16.9.0",
"@types/react-datepicker": "^2.11.0",
"@types/react-dom": "^16.9.0",
"@types/react-intl": "^3.0.0",
"@types/react-lottie": "^1.2.3",
"@types/react-native": "^0.60.30",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "^8.0.0",
"eslint": "^6.5.1",
"fork-ts-checker-webpack-plugin": "^4.0.2",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.12.0",
"react-native": "^0.61.5",
"react-native-web": "^0.12.0-rc.1",
"ts-loader": "^6.2.1",
"ttypescript": "^1.5.10",
"typescript": "^3.7.3",
"typescript-transform-paths": "^1.1.14"
},
"files": [
"lib"
]
}