This repository has been archived by the owner on Sep 18, 2022. It is now read-only.
generated from the-mes/react-native-typescript-npm-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.24 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
90
91
{
"name": "native-positioning",
"version": "1.0.1",
"description": "Set the positioning of the React Native component in one line of code",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "yarn prettier && yarn lint && yarn build",
"clean": "rimraf lib/*",
"build": "tsc",
"prebuild": "yarn clean",
"test": "jest --coverage",
"watch": "yarn build -- --watch",
"watch:test": "yarn test -- --watch",
"lint": "eslint --fix 'src/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/native-ly/native-positioning.git"
},
"keywords": [
"react",
"android",
"ios",
"utility",
"mobile",
"react-native",
"web",
"functions",
"style",
"vertical",
"horizontal",
"top",
"positioning",
"bottom",
"right",
"expo",
"left"
],
"bugs": {
"url": "https://github.com/native-ly/native-positioning/issues"
},
"homepage": "https://github.com/native-ly/native-positioning#readme",
"devDependencies": {
"@babel/core": "^7.19.1",
"@types/jest": "^28.1.2",
"@types/react": "^17.0.37",
"@types/react-native": "^0.67.8",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^28.1.1",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji": "^1.3.1",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-native": "^0.68.2",
"semantic-release": "^19.0.5",
"semantic-release-gitmoji": "^1.4.4",
"ts-jest": "^28.0.5",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn prettier",
"yarn lint"
]
}
}