-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "react-native-wind",
"version": "1.2.0",
"description": "A utility-first style library for React Native strongly inspired by TailwindCSS",
"keywords": [
"react-native",
"tailwind",
"tailwindcss",
"style",
"react",
"react-native-wind"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/impe93/react-native-wind",
"author": "Lorenzo Imperatrice",
"license": "mit",
"files": [
"/dist"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --check .",
"test": "jest --passWithNoTests",
"compile": "tsc",
"prepare": "tsc"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/react-native": "^0.64.13",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react-native": "^0.65.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react-native": "*"
},
"dependencies": {}
}