forked from vadimdemedes/tailwind-rn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.72 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
{
"name": "tailwind-rn",
"version": "4.2.0",
"description": "Use Tailwind CSS in React Native projects",
"license": "MIT",
"repository": "vadimdemedes/tailwind-rn",
"author": {
"name": "Vadim Demedes",
"email": "[email protected]",
"url": "https://vadimdemedes.com"
},
"main": "dist",
"bin": {
"tailwind-rn": "dist/cli.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"test": "xo && tsc && ava"
},
"files": [
"dist",
"unsupported-core-plugins.js"
],
"keywords": [
"tailwind",
"tailwindcss",
"react-native"
],
"dependencies": {
"@react-native-community/hooks": "^2.8.1",
"chokidar": "^3.5.2",
"color-string": "^1.9.0",
"css": "^3.0.0",
"css-mediaquery": "^0.1.2",
"css-to-react-native": "^3.0.0",
"meow": "^7.0.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.9.0",
"@types/color-string": "^1.5.2",
"@types/css": "^0.0.33",
"@types/css-mediaquery": "^0.1.1",
"@types/css-to-react-native": "^3.0.0",
"@types/react": "^17.0.38",
"@types/react-native": "^0.66.11",
"@vdemedes/prettier-config": "^1.0.1",
"ava": "^4.0.0",
"dataloader": "^2.0.0",
"delay": "^5.0.0",
"execa": "^5.1.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^3.0.11",
"tempy": "^1.0.1",
"typescript": "^4.5.4",
"xo": "^0.39.1"
},
"peerDependencies": {
"react-native": "*",
"tailwindcss": "^3.0.0"
},
"prettier": "@vdemedes/prettier-config",
"xo": {
"prettier": true,
"rules": {
"import/extensions": "off",
"import/no-extraneous-dependencies": [
"error",
{
"peerDependencies": true
}
]
},
"settings": {
"import/ignore": [
"react-native"
]
}
}
}