-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "react-native-responsive-theme-provider",
"version": "0.1.2",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"npmClient": "yarn",
"license": "MIT",
"author": "Eric Bower",
"repository": {
"type": "git",
"url": "git://github.com/verypossible/react-native-responsive-theme-provider.git"
},
"scripts": {
"build": "tsc",
"test": "tsc --noEmit && jest",
"prepublish": "yarn build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@types/jest": "^23.3.2",
"@types/node": "^10.10.2",
"@types/react": "^16.7.20",
"@types/react-native": "^0.57.29",
"@types/react-test-renderer": "^16.0.3",
"@types/styled-components": "^4.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.2.0",
"metro-react-native-babel-preset": "^0.51.1",
"prettier": "^1.13.7",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-native": "^0.57.8",
"react-test-renderer": "^16.7.0",
"styled-components": "^4.1.3",
"ts-jest": "^23.10.1",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"tslint-config-prettier": "^1.13.0",
"tslint-no-circular-imports": "^0.6.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"react": "^16.7.0",
"react-native": "^0.57.8",
"styled-components": "^4.1.3"
}
}