-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.38 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
73
74
75
76
77
78
{
"name": "keydrop",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@types/jest": "^20.0.4",
"@types/react": "^16.3.12",
"@types/react-native": "^0.55.4",
"@types/react-redux": "^5.0.16",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.6.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-node6": "^11.0.0",
"eslint": "^4.19.1",
"jest": "~20.0.0",
"jest-fetch-mock": "^1.2.0",
"mock-async-storage": "^1.0.3",
"react-native-debugger-open": "^0.3.11",
"react-native-typescript-transformer": "^1.1.3",
"react-test-renderer": "16.0.0-alpha.12",
"replace": "^0.3.0",
"ts-jest": "^20.0.7",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "tslint src/**/*.ts",
"test": "node node_modules/jest/bin/jest.js --watch",
"tsc": "tsc",
"build": "npm run clean && npm run tsc --",
"clean": "rm -rf build",
"postinstall": "npm run patch && rndebugger-open",
"patch": "npm run patchAndroidInstaller",
"patchAndroidInstaller": "./node_modules/.bin/replace \\'install\\',\\ pathToApk \\'install\\',\\ \\'-r\\',\\ pathToApk node_modules/react-native/local-cli/runAndroid/runAndroid.js -s"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/",
"<rootDir>/lib/",
"<rootDir>/build/"
],
"cacheDirectory": ".jest/cache"
},
"dependencies": {
"immutable": "^3.8.2",
"react": "^16.3.1",
"react-native": "^0.55.3",
"react-native-camera": "^1.1.1",
"react-native-qrcode-scanner": "^1.0.1",
"react-native-qrcode-svg": "^5.0.6",
"react-native-svg": "^6.3.1",
"react-native-vector-icons": "^4.6.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-persist": "^5.9.1",
"redux-persist-transform-immutable": "^5.0.0",
"redux-thunk": "^2.2.0",
"tslib": "^1.9.0"
}
}