This repository has been archived by the owner on Dec 20, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "welding-toolbox",
"version": "1.1.1",
"description": "An app containing a set of useful welding tools",
"author": {
"name": "Antoni Kepinski",
"email": "a@kepinski.me",
"url": "https://kepinski.me"
},
"license": "MIT",
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"test": "xo"
},
"dependencies": {
"formik": "^1.5.7",
"react": "16.8.6",
"react-native": "0.59.8",
"react-native-easy-grid": "^0.2.1",
"react-native-firebase": "^5.4.0",
"react-native-gesture-handler": "^1.2.1",
"react-native-ionicons": "^4.5.6",
"react-native-material-dropdown": "^0.11.1",
"react-native-ui-kitten": "3.1.2",
"react-navigation": "^3.11.0",
"sec": "^1.0.0"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/runtime": "7.4.5",
"babel-eslint": "^10.0.1",
"eslint-config-xo-react": "^0.19.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"metro-react-native-babel-preset": "0.54.1",
"xo": "^0.24.0"
},
"xo": {
"nodeVersion": ">=10",
"parser": "babel-eslint",
"envs": [
"node",
"browser"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.8"
}
},
"rules": {
"unicorn/filename-case": "off",
"react/prop-types": "off",
"import/extensions": "off"
}
}
}