-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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": "react-native-themed-stylesheet",
"version": "0.3.3",
"description": "React Native StyleSheets with Theming Support",
"author": "Andre Pedroza",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andreppedroza/react-native-themed-stylesheet.git"
},
"main": "index.js",
"types": "index.d.ts",
"files": ["index.js", "index.d.ts", "storybook"],
"scripts": {
"build": "tsc",
"test": "jest --verbose",
"test:coverage": "npm test -- --coverage=true --collectCoverage"
},
"keywords": [
"react native",
"theme",
"theming",
"stylesheet",
"dark-theme",
"dark-mode",
"expo",
"react-native-appearance"
],
"peerDependencies": {
"@storybook/addons": "*",
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@storybook/addons": "^5.3",
"@testing-library/react-hooks": "^5.0.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-native": "^0.63.48",
"@types/react-test-renderer": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"react": "16.13.1",
"react-native": "0.63.4",
"react-test-renderer": "16.13.1",
"ts-jest": "^26.5.1",
"typescript": "~4.0.0"
},
"jest": {
"preset": "react-native",
"globals": {
"ts-jest": {
"tsconfig": {
"jsx": "react"
}
}
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": ["<rootDir>/tests/with*.ts"],
"collectCoverageFrom": ["<rootDir>/src/index.ts"],
"moduleFileExtensions": ["js", "ts", "tsx"]
},
"dependencies": {
"ts-deepmerge": "^1.0.6"
}
}