-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
{
"version": "0.0.0",
"name": "react-multiversal",
"license": "MIT",
"files": [
"*",
"!.DS_Store",
"!**/*.bs.js",
"!.merlin",
"!lib/bs",
"!lib/ocaml"
],
"scripts": {
"format:most": "prettier --write \"**/*.{md,json,js,css}\"",
"format:res": "rescript format -all",
"format": "npm run format:most && npm run format:res",
"res:start": "rescript build -w",
"res:clean": "rescript clean",
"res:build": "rescript build",
"start": "npm run res:start",
"build": "npm run res:build",
"test": "npm run res:clean && npm run res:build"
},
"engines": {
"npm": ">=8.7.0"
},
"overrides": {
"react": "18.0.0",
"rescript": "10.1.0-rc.2"
},
"peerDependencies": {
"@react-native-community/blur": ">=3.6.0",
"@rescript-react-native/safe-area-context": ">=4.0.0",
"@rescript-react-native/svg": ">=12.1.0",
"@rescript/react": ">=0.10.0",
"rescript-react-native": ">=0.68.1 || >=0.69.0 || >=0.70.0",
"rescript": ">=9.1.0 || >=10.0.0"
},
"devDependencies": {
"@react-native-community/blur": "^3.6.0",
"@rescript-react-native/safe-area-context": "^4.0.0",
"@rescript-react-native/svg": "^12.1.9",
"@rescript/react": "^0.10.0",
"prettier": "^2.0.0",
"react-native-safe-area-context": "^4.0.0",
"react-native-svg": "^12.1.0",
"rescript-react-native": "https://github.com/rescript-react-native/rescript-react-native#af9cdaf89d737f89fd65747fc4c57525d3862540",
"rescript": "10.1.0-rc.2"
},
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
}
}