-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "notesapprn",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@react-native-community/async-storage": "^1.3.0",
"@types/react-navigation": "^3.0.4",
"@types/react-redux": "^7.0.1",
"@types/redux-logger": "^3.0.7",
"@types/styled-components": "^4.1.14",
"axios": "^0.18.0",
"react": "^16.8.3",
"react-native": "^0.59.4",
"react-native-gesture-handler": "^1.0.17",
"react-native-swipeout": "^2.3.6",
"react-navigation": "^3.3.2",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-axios-middleware": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/react": "^16.8.6",
"@types/react-native": "^0.57.38",
"@types/react-test-renderer": "^16.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.52.0",
"react-test-renderer": "16.6.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
]
}
}