-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
90 lines (90 loc) · 2.24 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
{
"name": "react-native-design-utility",
"version": "3.0.2",
"description": "react-native utility library for ui",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"types": "lib/typescript/src/index.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/EQuimper/react-native-design-utility"
},
"bugs": {
"url": "https://github.com/EQuimper/react-native-design-utility/issues"
},
"homepage": "https://github.com/EQuimper/react-native-design-utility#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"keywords": [
"react-native",
"design-system",
"design-utility",
"theme"
],
"files": [
"lib/",
"theme.js",
"src/"
],
"author": {
"email": "[email protected]",
"name": "Emanuel Quimper <EQuimper>"
},
"scripts": {
"build": "bob build",
"prepare": "yarn build",
"release": "release-it",
"prettier": "prettier --write 'src/**/*'",
"typescript": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@react-native-community/bob": "^0.17.1",
"@release-it/conventional-changelog": "^2.0.1",
"@types/fs-extra": "^9.0.11",
"@types/lodash.get": "^4.4.6",
"@types/meow": "^6.0.0",
"@types/prettier": "^2.2.3",
"@types/react": "^18.3.3",
"@types/react-test-renderer": "^17.0.1",
"@types/rimraf": "^3.0.0",
"cross-env": "^7.0.3",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"react": "18.3.1",
"react-native": "~0.74.2",
"react-test-renderer": "^18.3.1",
"release-it": "^14.6.2",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.59.0"
},
"dependencies": {
"fs-extra": "^10.0.0",
"lodash.get": "^4.4.2",
"meow": "^10.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}