-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
75 lines (75 loc) · 1.56 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
{
"private": true,
"name": "@acme/feature-home",
"version": "1.0.0",
"description": "Acme home feature for React (Native)",
"author": "Cedric van Putten <[email protected]>",
"license": "MIT",
"main": "./build/index.js",
"types": "./src/index.ts",
"react-native": "./src/index.ts",
"files": [
"build",
"src"
],
"scripts": {
"dev": "tsup --watch --silent",
"lint": "eslint --ext js,ts,tsx .",
"test": "jest",
"build": "tsup --clean"
},
"dependencies": {
"@acme/ui": "workspace:*"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@testing-library/react-native": "^12.5.0",
"@tsconfig/recommended": "^1.0.6",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.43",
"babel-preset-expo": "~11.0.5",
"expo": "^51.0.38",
"jest": "^29.7.0",
"jest-expo": "^51.0.1",
"react": "18.2.0",
"react-native": "0.74.2",
"react-test-renderer": "18.2.0",
"tsup": "^6.5.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-web": "*"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
},
"react-native-web": {
"optional": true
}
},
"eslintConfig": {
"extends": "@acme/eslint-config",
"ignorePatterns": [
"node_modules",
"build"
]
},
"jest": {
"preset": "jest-expo"
},
"tsup": {
"entry": [
"src/index.ts"
],
"outDir": "build",
"sourcemap": true,
"dts": true,
"external": [
"react",
"react-native",
"react-native-web"
]
}
}