-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.49 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
108
{
"version": "0.2.0-next",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "types/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "npm run lint:code && npm run lint:commit",
"lint:commit": "commitlint --to HEAD",
"lint:code": "tsdx lint",
"prepare": "tsdx build",
"release": "semantic-release"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-native": ">=0.61.0 <1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "next",
"prerelease": true
}
]
},
"eslintConfig": {
"extends": [
"react-app",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"name": "emotion-native-extended",
"author": "Wendell Misiedjan",
"module": "dist/emotion-native-extended.esm.js",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@emotion/native": "^10.0.27",
"@types/css-mediaquery": "^0.1.0",
"@types/lodash.memoize": "^4.1.6",
"@types/react": "16.9.0",
"@types/react-dom": "16.9.6",
"@types/react-native": "0.61.4",
"@types/react-router-dom": "^5.1.4",
"@types/react-router-native": "^5.1.0",
"husky": "^4.2.5",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "0.61.4",
"semantic-release": "^17.0.7",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/is-prop-valid": "^0.8.8",
"@emotion/primitives-core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"css-mediaquery": "^0.1.2",
"csstype": "^2.6.10",
"lodash.memoize": "^4.1.2",
"react-native-extended-stylesheet": "^0.12.0",
"react-router-dom": "^5.1.2",
"react-router-native": "^5.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ItsWendell/emotion-native-extended.git"
}
}