This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
{
"name": "react-native-tv-starter",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"prettier": "prettier --list-different 'src/**/*.{ts,tsx,json,md}'",
"lint": "yarn tslint && yarn stylelint",
"tslint": "tsc -p . --noEmit --skipLibCheck; tslint --fix 'src/**/*.{ts,tsx}' -p .",
"stylelint": "stylelint 'src/**/*.{ts,tsx}'",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"stylelint": {
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-recommended",
"stylelint-config-styled-components"
]
},
"dependencies": {
"polished": "3.4.1",
"react": "16.9.0",
"react-native": "npm:react-native-tvos@0.60.4-5",
"styled-components": "4.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.13",
"@types/styled-components": "^4.1.19",
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react-test-renderer": "16.9.0",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"jest": {
"preset": "react-native"
}
}