-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "rn-discogs-auth",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "export $(grep -v '^#' .env | xargs) && expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"expo": "~45.0.0",
"expo-linking": "~3.1.0",
"expo-status-bar": "~1.3.0",
"expo-updates": "~0.13.3",
"query-string": "^7.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-web": "0.17.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jest": "^28.1.6",
"@types/react": "~17.0.21",
"@types/react-native": "^0.69.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"private": true,
"prettier": {
"singleQuote": true
},
"jest": {
"globals": {
"jest": true
},
"testEnvironment": "node",
"testMatch": [
"**/lib/**/?(*.)+(spec|test|integration).ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}