-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "citizen",
"version": "0.0.1",
"description": "Prepare for you American citizenship test",
"author": "Elisabeth Seite",
"license": "MIT",
"main": "node_modules/expo/AppEntry.js",
"rnpm": {
"assets": [
"./assets/fonts"
]
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"lint": "eslint --ext .jsx,.js .",
"fix:lint": "eslint --ext .jsx,.js . --fix .",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"expo": "^39.0.0",
"expo-font": "~8.3.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
"react-native-gesture-handler": "~1.7.0",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.14.0",
"react-navigation": "4.4.3",
"react-navigation-stack": "^2.10.1",
"snyk": "1.425.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"babel-preset-expo": "^8.3.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.3",
"eslint-plugin-react-native": "3.10.0",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2"
},
"private": true,
"snyk": true
}