-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
110 lines (110 loc) · 3.72 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "rn-composable",
"version": "1.0.0",
"description": "Composable UI app :: composition is fun",
"keywords": [],
"main": "src/index.js",
"dependencies": {
"@react-native-community/picker": "^1.8.1",
"axios": "^0.21.1",
"cypress-plugin-snapshots": "^1.4.4",
"dot-object": "^2.1.4",
"expo": "^40.0.1",
"history": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-calendars": "1.1241.0",
"react-native-chart-kit": "^6.11.0",
"react-native-easy-grid": "0.2.2",
"react-native-gesture-handler": "^1.8.0",
"react-native-search-filter": "^0.1.5",
"react-native-sortable-multilist": "1.1.2",
"react-native-svg": "^12.1.0",
"react-native-web-jsonschema-form": "^3.1.4",
"react-native-web-ui-components": "^5.0.7",
"tailwind-rn": "^3.0.1"
},
"devDependencies": {
"@babel/preset-env": "latest",
"@commitlint/config-conventional": "^8.3.4",
"@expo/config": "^3.2.1",
"@expo/webpack-config": "^0.12.60",
"@testing-library/jest-native": "^3.3.0",
"@testing-library/react-native": "^7.0.2",
"@types/axios": "^0.14.0",
"@types/detox": "16.4.0",
"@types/jest": "^26.0.4",
"@types/jest-json-schema": "^2.1.2",
"@types/node": "^14.0.14",
"@types/react": "^17.0.1",
"@types/react-native": "~0.70.4",
"@types/react-native-calendars": "^1.505.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@unimodules/core": "~5.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-preset-expo": "^8.3.0",
"babel-preset-react": "latest",
"cross-env": "^7.0.3",
"cypress": "^6.7.1",
"cypress-image-snapshot": "^4.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^29.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^20.1.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-expo": "^40.0.0",
"jest-json-schema": "^2.1.0",
"prettier": "^2.1.2",
"react-native-testing-library": "^6.0.0",
"react-native-web": "~0.13.12",
"react-test-renderer": "16.9.0",
"typescript": "~4.0.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --format unix src",
"demo": "cross-env REACT_NATIVE_DEMO=true expo start --web -c",
"editor": "cross-env REACT_NATIVE_LIVEEDIT=true expo start --web -c",
"build:editor": "cross-env REACT_NATIVE_LIVEEDIT=true expo build:web",
"deploy": "cd expo build:web",
"build": "expo build:web",
"build:demo": "cross-env REACT_NATIVE_DEMO=true expo build:web",
"start": "expo start -c",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"stage": "cross-env REACT_NATIVE_NODE_ENV=stage expo start -a --no-dev --https --ios",
"test": "jest",
"logic-test": "jest ./src/tests",
"serve:web": "http-server web-build",
"build:web": "./node_modules/.bin/expo build:web",
"coverage": "./node_modules/.bin/jest --watchAll=false --coverage"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/applerdotxyz/rn-composable-ui.git"
},
"author": "applerdotxyz",
"license": "MIT",
"bugs": {
"url": "https://github.com/issues"
}
}