-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.82 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
{
"name": "@warungpintar/renceng-native",
"version": "0.0.9",
"description": "renceng-native is an implementation of Renceng Design Language System for react-native apps.",
"author": "Muhammad Irsyad",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/renceng-native.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/warungpintar/renceng-native#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/warungpintar/renceng-native.git"
},
"bugs": {
"url": "https://github.com/warungpintar/renceng-native/issues"
},
"engines": {
"node": ">=10"
},
"directories": {
"example": "example"
},
"keywords": [
"renceng"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"",
"prettier:examples": "prettier --write \"./example/**/*.{js,jsx,ts,tsx}\"",
"publish:local": "yalc publish",
"prepare-husky": "husky install",
"test:unitcomponents": "tsdx test --bail --verbose --passWithNoTests"
},
"dependencies": {
"@emotion/native": "^11.0.0",
"@emotion/react": "^11.9.0",
"@types/styled-system": "^5.1.15",
"emotion-theming": "^10.0.19",
"global": "^4.4.0",
"react-native-eva-icons": "^1.3.1",
"react-native-svg": "^12.3.0",
"styled-system": "^5.1.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-native": "^0.64.0"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.2",
"@warungpintar/eslint-config": "^0.1.1",
"@warungpintar/prettier-config": "^0.2.0",
"eslint": "^8.21.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.2",
"prettier": "^2.7.1",
"react": "^16.8.6",
"react-native": "^0.64.0",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn test:unitcomponents --collect-coverage",
"yarn lint --fix",
"yarn prettier --write"
],
"src/*.{css,md,html}": [
"yarn lint --fix"
]
},
"prettier": "@warungpintar/prettier-config",
"size-limit": [
{
"path": "dist/renceng-native.cjs.production.min.js",
"limit": "300 KB"
},
{
"path": "dist/renceng-native.esm.js",
"limit": "300 KB"
}
]
}