-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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": "hackcamp-react-native",
"version": "0.1.0",
"private": true,
"devDependencies": {
"jest-expo": "^0.3.0",
"react-native-scripts": "0.0.26",
"react-test-renderer": "~15.4.1",
"typescript": "^2.2.2"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"build": "tsc -w"
},
"dependencies": {
"@shoutem/ui": "^0.12.0",
"@types/lodash": "^4.14.61",
"@types/react": "^15.0.21",
"@types/react-native": "^0.42.14",
"@types/react-redux": "^4.4.38",
"@types/redux": "^3.6.0",
"@types/redux-form": "^6.3.6",
"@types/socket.io-client": "^1.4.29",
"axios": "^0.16.0",
"expo": "^15.1.0",
"lodash": "^4.17.4",
"react": "~15.4.0",
"react-native": "0.42.3",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-form": "^6.6.1",
"redux-persist": "^4.6.0",
"redux-thunk": "^2.2.0",
"socket.io-client": "^1.7.3",
"ts-jest": "^19.0.7"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}