forked from bloodyowl/rescript-recoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "rescript-recoil",
"version": "3.1.0",
"description": "Zero-cost bindings to Facebook's Recoil library",
"scripts": {
"build": "rescript",
"start": "rescript build -with-deps -w",
"clean": "rescript clean",
"test": "retest --with-dom test/*.bs.js",
"format": "find ./src -iname '*.re' | xargs bsrefmt --in-place && find ./src -iname '*.rei' | xargs bsrefmt -i true --in-place && find ./test -iname '*.re' | xargs bsrefmt --in-place && find ./examples -iname '*.re' | xargs bsrefmt --in-place",
"examples": "moduleserve ./examples --port 8000"
},
"keywords": [
"BuckleScript",
"Recoil",
"ReasonML",
"Reason",
"React",
"ReScript"
],
"author": "bloodyowl <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rescript/react": "^0.10.1",
"moduleserve": "^0.9.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recoil": "0.1.2",
"rescript": "^9.1.4",
"rescript-test": "^3.0.0"
},
"peerDependencies": {
"@rescript/react": "^0.10.1",
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"recoil": ">=0.1.1"
}
}