forked from TVke/react-native-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
{
"name": "@lyearn/react-native-tailwindcss",
"description": "A React Native translation of TailwindCSS",
"author": "Lyearn Team",
"license": "ISC",
"version": "2.1.0",
"keywords": [
"react",
"native",
"tailwind",
"css"
],
"repository": "https://github.com/Lyearn/react-native-tailwindcss.git",
"bugs": "https://github.com/Lyearn/react-native-tailwindcss/issues",
"scripts": {
"prepare": "yarn prebuild && yarn build",
"prebuild": "rm -rf dist",
"build": "babel ./src --out-dir dist",
"build:watch": "yarn build -w",
"lint": "eslint ./src --fix"
},
"files": [
"dist"
],
"main": "dist/tailwind.js",
"peerDependencies": {
"react-native": "*"
},
"dependencies": {
"lodash": "*",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"react": "^16.13.1",
"react-native": "^0.63.2",
"react-test-renderer": "^16.13.1"
}
}