-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.42 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
{
"name": "native-theme",
"version": "1.1.0",
"description": "Theming utilities for react native and react native web.",
"repository": "git@github.com:CarlosBalladares/native-theme.git",
"author": "carlosbf@protonmail.com",
"license": "MIT",
"private": false,
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"lib/",
"src/"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@react-native-community/bob": "^0.14.2",
"@react-native-community/eslint-config": "^1.1.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^25.2.3",
"@types/node": "^10.3.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.0",
"@types/react-native": "^0.62.11",
"@types/react-native-uuid": "^1.4.0",
"@types/react-test-renderer": "^16.9.2",
"@types/uuid": "^8.0.0",
"@typescript-eslint/parser": "^3.0.2",
"babel-jest": "^26.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"core-js": "^3.6.5",
"eslint": "^7.1.0",
"eslint-plugin-react-native": "^3.8.1",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "^0.61.4",
"react-native-web": "~0.11.7",
"react-test-renderer": "~16.9.0",
"rimraf": "^3.0.2",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "~3.8.3"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
],
"files": [
"src/"
]
},
"scripts": {
"build": "yarn clean && bob build && yarn docs",
"clean": "rimraf lib && rimraf docs",
"prepare": "yarn build",
"lint": "eslint \"./src/**/**.{ts, tsx}\"",
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs --media assets",
"format": "prettier --write \"./src/**/**.{ts, tsx}\"",
"format:check": "prettier --list-different \"./src/**/**.{ts, tsx}\"",
"test": "jest"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"react-native-uuid": "^1.4.9",
"shasum-object": "^1.0.0"
}
}