This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "nucleus-rn",
"version": "1.0.3",
"main": "./dist/bundle.cjs.js",
"module": "./dist/bundle.esm.js",
"types": "./dist/types/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://www.nucleus.sh",
"repository": {
"type": "git",
"url": "https://github.com/nucleus-sh/nucleus-rn.git"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "nodemon -w src -e ts,js --exec 'yarn build-dev'",
"watch-expo-rn": "nodemon -w . -e js,json,ts --ignore dist/ --exec 'yarn build-dev && rsync -av --exclude=\"node_modules\" . ./playground/expo-rn/node_modules/nucleus-rn/ && echo Synced!'",
"build-dev": "BUILD_DEV=true rollup -c"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.19.1",
"@react-native-community/netinfo": "^9.4.1",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/clientjs": "^0.2.0",
"@types/nanoid": "^3.0.0",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^3.0.1",
"rollup": "^3.26.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6"
},
"dependencies": {},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.19.1",
"@react-native-community/netinfo": "^9.4.1",
"react": "^18.2.0",
"react-native": "^0.72.3"
}
}