forked from z0al/react-native-styled.macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.67 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-native-styled.macro",
"version": "0.0.0-development",
"description": "A Utility-first Styling Library for React Native",
"license": "MIT",
"author": "Ahmed T. Ali",
"repository": "z0al/react-native-styled.macro",
"sideEffects": false,
"main": "build/commonjs/macro.js",
"module": "build/module/macro.js",
"types": "build/typescript/macro.d.ts",
"react-native": "src/macro.ts",
"source": "src/macro.ts",
"files": [
"build",
"lib",
"src",
"!**/__tests__",
"!**/__mocks__"
],
"keywords": [
"expo",
"expo-web",
"android",
"ios",
"react-native",
"react-native-web",
"styled",
"babel-plugin-macros"
],
"scripts": {
"build": "rimraf -rf build && bob build",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"test": "yarn build && jest",
"semantic-release": "semantic-release",
"docs-gen": "ts-node ./scripts/docs-gen.ts",
"bootstrap:example": "yarn --cwd example",
"bootstrap": "yarn bootstrap:example && yarn",
"format": "prettier -w '**/*.{ts,js,json,md}'"
},
"dependencies": {
"@babel/helper-module-imports": "^7.12.5",
"@babel/traverse": "^7.12.12",
"babel-helper-evaluate-path": "^0.5.0",
"babel-plugin-macros": "^3.0.1",
"dequal": "^2.0.2"
},
"devDependencies": {
"@babel/types": "^7.12.12",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"@types/babel-plugin-macros": "^2.8.4",
"@types/babel-plugin-tester": "^9.0.1",
"@types/babel__core": "^7.1.12",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-native": "^0.64.2",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-plugin-tester": "^10.0.0",
"camel-case": "^4.1.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest-expo": "^41.0.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-native": "^0.63.3",
"react-native-builder-bob": "^0.18.1",
"react-native-web": "^0.16.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.0",
"ts-node": "^9.0.0",
"type-fest": "^1.0.1",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">=16.11.0",
"react-native": ">=0.62.0"
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": true,
"printWidth": 72
},
"jest": {
"preset": "jest-expo/universal",
"modulePathIgnorePatterns": [
"<rootDir>/build/"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "build",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}