-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.35 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
{
"name": "react-native-lamantin",
"version": "1.1.11",
"author": "lamantin",
"description": "Set of components for https://lamantin.group development",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lamantin-group/react-native-lamantin.git"
},
"keywords": [
"react-native",
"components",
"ui kit",
"ui",
"lamantin"
],
"main": "index.ts",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "tsc",
"start": "react-native start",
"doctor": "npm run doctor:remove && npm run doctor:install",
"doctor:remove": "rm -rf node_modules && rm -f package-lock.json && rm -rf example/node_modules && rm -f example/package-lock.json && rm -f example/ios/Podfile.lock && rm -rf example/ios/Pods && rm -rf example/ios/build",
"doctor:install": "yarn install && cd example && yarn install && cd ios && pod install",
"git:reset": "rm -rf .git && git init && git add -A && git commit -m 'Initial commit'",
"android": "cd example && npm run android",
"ios": "cd example && npm run ios",
"npm:publish": "npm version patch && npm publish && git push"
},
"peerDependencies": {
"react": "^16.9.0",
"react-native": "^0.41.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.6.0",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.12",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-standard": "^4.0.1",
"prettier-eslint": "^9.0.0",
"react": "16.8.6",
"react-native": "0.60.4",
"typescript": "^3.4.3"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.6.0",
"@types/react-native-snap-carousel": "^3.7.4",
"react-native-snap-carousel": "^3.8.4"
}
}