-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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
{
"name": "react-native-legos",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint src --ext .ts,.tsx",
"start": "react-native start",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@react-native-community/segmented-control": "^2.1.2",
"d3-ease": "^1.0.7",
"module-resolver": "^1.0.0",
"react": "16.13.1",
"react-native": "0.61.3",
"react-native-gesture-handler": "^1.8.0",
"react-native-pose": "^0.9.1",
"react-native-reanimated": "^1.13.0",
"react-native-screens": "^2.11.0",
"react-native-svg": "^9.13.3",
"react-navigation": "^4.4.2",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.9.2",
"react-spring": "^8.0.27",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@types/d3-ease": "^1.0.10",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.51",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@verypossible/eslint-config": "^1.0.2",
"babel-jest": "^26.5.2",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.19.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.5.2",
"metro-react-native-babel-preset": "^0.57.0",
"prettier": "^2.2.1",
"react-dom": "^16.13.1",
"react-native-testing-library": "^6.0.0",
"react-test-renderer": "^16.13.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"moduleNameMapper": {
"^@legos/(.*)$": "<rootDir>/src/packages/$1",
"^ui/(.*)$": "<rootDir>/src/ui/$1",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}