This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "bs-react-native-paper",
"version": "5.1.0",
"description": "React Native Paper bindings for ReasonML",
"repository": {
"type": "git",
"url": "https://github.com/callstackincubator/bs-react-native-paper.git"
},
"bugs": "https://github.com/callstackincubator/bs-react-native-paper/issues",
"homepage": "https://github.com/callstackincubator/bs-react-native-paper",
"author": "Medson de Oliveira Junior <[email protected]>",
"license": "MIT",
"keywords": [
"bucklescript",
"react-native-paper",
"reasonml",
"reason",
"react-native",
"material design"
],
"dependencies": {
"bs-react-native": "^0.9.0"
},
"peerDependencies": {
"react-native-paper": "^2.0.0",
"reason-react": "^0.5.2"
},
"devDependencies": {
"bs-platform": "^4.0.5",
"lint-staged": "^7.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"reason-react": "^0.5.2"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 120 --semi false",
"git add"
],
"*.re": [
"refmt --in-place",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"start": "yarn bs:watch",
"test": "yarn bs:build",
"clean": "bsb -clean-world",
"bs:build": "bsb -make-world -clean-world",
"bs:watch": "bsb -make-world -clean-world -w",
"bs:setup": "bsb -make-world",
"lint:staged": "lint-staged",
"bootstrap": "yarn && yarn --cwd example"
}
}