This repository was archived by the owner on Sep 14, 2022. It is now read-only.
generated from thlmenezes/expo-typescript-gitmoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.98 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
{
"name": "grocery-price-watch",
"version": "0.4.4",
"description": "Track grocery prices in a user friendly way",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"commit": "cz",
"lint": "eslint . --fix --ext ts,js,tsx,jsx",
"changelog": "npx gitmoji-changelog",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --coverage",
"test:badges": "yarn test:ci && jest-coverage-badges --input coverage/coverage-summary.json --output __badges__"
},
"dependencies": {
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.5.0",
"axios": "^0.26.0",
"babel-plugin-module-resolver": "^4.1.0",
"expo": "~44.0.0",
"expo-status-bar": "~1.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-gesture-handler": "^2.2.0",
"react-native-reanimated": "^2.4.1",
"react-native-responsive-fontsize": "^0.5.1",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "^3.12.0",
"react-native-web": "0.17.1",
"react-query": "^3.34.15",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^16.2.1",
"@commitlint/core": "^16.2.1",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/react": "~17.0.21",
"@types/react-native": "~0.64.12",
"@types/react-test-renderer": "17",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-polyfill": "^6.26.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-gitmoji": "0.0.7",
"eslint": "^8.9.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-universe": "^10.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"jest": "26.3.0",
"jest-coverage-badges": "^1.1.2",
"jest-expo": "^44.0.1",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"react-test-renderer": "17",
"typescript": "~4.3.5"
},
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-gitmoji"
}
},
"resolutions": {
"styled-components": "^5"
}
}