-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"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"
},
"dependencies": {
"@types/lodash": "^4.14.195",
"@types/node": "^20.8.3",
"expo": "^52.0.25",
"matter-js": "^0.19.0",
"node": "^20.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.72.17",
"react-native-game-engine": "^1.2.0",
"react-native-web": "^0.19.6",
"start": "^5.1.0",
"@expo/metro-runtime": "~4.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@types/jest": "^29.5.3",
"@types/matter-js": "^0.17.7",
"@types/react": "^18.2.15",
"@types/react-native": "^0.72.4",
"@types/react-test-renderer": "^18.0.0",
"babel-preset-expo": "^9.6.0",
"react-native-typescript-transformer": "^1.2.10",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2"
},
"private": true,
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}