This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "Passman",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"test": "jest",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/Passman/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'",
"tsc": "tsc",
"lint": "tslint -p ./"
},
"dependencies": {
"jssha": "^2.3.1",
"mobx": "^4.2.1",
"mobx-react": "^5.1.2",
"node-libs-react-native": "^1.0.2",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-fontawesome": "^5.7.0",
"react-native-popover-tooltip": "^1.1.4",
"react-native-secure-key-store": "^1.0.9",
"react-native-touch-id": "^4.0.1",
"react-navigation": "^2.0.1",
"sjcl": "^1.0.7",
"styled-components": "^3.2.6",
"styled-components-ts": "0.0.14",
"vm-browserify": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/jssha": "0.0.29",
"@types/react": "^16.3.14",
"@types/react-native": "^0.55.12",
"@types/sjcl": "^1.0.28",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"jest": "22.4.3",
"react-native-typescript-transformer": "^1.2.5",
"react-test-renderer": "16.3.1",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"jest": {
"verbose": true,
"preset": "react-native",
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/mocks/"
],
"testRegex": "(/tests/.*|(\\.|/)(test))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
}
}