-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.31 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@vital-ui/native",
"version": "0.2.0",
"scripts": {
"test": "jest",
"dev": "docz dev",
"build:doc": "docz build",
"build": "tsc & copyfiles src/**/*.png dist/ -u 1"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"peerDependencies": {
"react": ">15",
"react-native": ">0.50.0",
"react-native-linear-gradient": ">2.0.0",
"react-native-vector-icons": ">4.0.0"
},
"dependencies": {
"polished": "^2.3.3",
"react-art": "^16.8.1",
"react-native-web": "^0.10.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.4",
"@types/react": "^16.8.3",
"@types/react-native": "^0.57.36",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-test-renderer": "^16.8.1",
"@types/styled-components": "^4.1.10",
"babel-jest": "24.1.0",
"babel-loader": "^8.0.5",
"babel-preset-react-native": "^5",
"copyfiles": "^2.1.0",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"jest": "24.1.0",
"prettier": "^1.16.4",
"react": "16.8.1",
"react-native": "0.58.4",
"react-native-linear-gradient": "^2.5.3",
"react-native-typescript-transformer": "^1.2.11",
"react-native-vector-icons": "^6.3.0",
"react-test-renderer": "16.8.1",
"styled-components": "^4.1.3",
"ts-jest": "^23.10.5",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"ios.ts",
"ios.tsx",
"android.ts",
"android.tsx"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache",
"globals": {
"ts-jest": {
"useBabelrc": true
}
}
}
}