-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "@bedrock-ui/react-native",
"version": "1.0.2",
"description": "Bedrock UI React Native",
"files": [
"lib"
],
"module": "lib/esm/index.js",
"main": "lib/cjs/index.js",
"types": "lib/cjs/index.d.ts",
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"default": "./lib/cjs/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "npm run rm:build && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"dev": "expo start -c",
"dev:clean": "expo r -c",
"lint": "eslint \"**/*.{ts,tsx}\"",
"rm:build": "rimraf lib",
"storybook": "start-storybook -p 6006",
"typecheck": "tsc --noEmit"
},
"author": "Matthew Wolfe",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.9",
"@types/react": "^18.2.14",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"expo": "^49.0.2",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "^0.72.3",
"rimraf": "^5.0.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18",
"react-native": "^0.72.0"
}
}