-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "tally-frontend",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"@expo/webpack-config": "^18.0.1",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"axios": "^1.4.0",
"expo": "~48.0.18",
"expo-status-bar": "~1.4.4",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.71.8",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-web": "~0.18.10",
"source-map-loader": "^3.0.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.2",
"@types/jest": "^29.0.0",
"@types/react": "~18.0.14",
"@types/react-native": "~0.72.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"babel-jest": "^29.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^7.0.4",
"jest": "^29.0.0",
"lint-staged": "^12.5.0",
"prettier": "2.6.0",
"react-test-renderer": "^18.2.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"private": true,
"engines" : {
"node" : ">=18.17.0",
"npm": ">=9.6.7"
}
}