forked from bloodyowl/rescript-recoil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "chattyzilla-reason-recoil",
"version": "0.10.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest",
"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"
],
"author": "",
"license": "MIT",
"devDependencies": {
"bs-platform": "^7.3.2",
"jest": "^24.9.0",
"moduleserve": "^0.9.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reason-react": "^0.9.1",
"reason-test-framework": "^0.3.2",
"recoil": "^0.0.10"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reason-react": "^0.9.1",
"recoil": "^0.0.10"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"roots": [
"test"
],
"testMatch": [
"**/*__test.bs.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(bs-platform|reason-react|reason-react-compat|reason-react-update|bs-webapi|bs-css|bs-css-emotion)/)"
]
},
"dependencies": {
"reason-promise": "^1.1.1"
}
}