forked from youngkidwarrior/rescript-remix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1008 Bytes
/
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
{
"name": "@cobbweb/rescript-remix",
"version": "0.2.10",
"scripts": {
"build": "rescript",
"postbuild": "cp lib/js/routing/RouteConventions.js registerRoutes.js",
"start": "rescript build -w",
"clean": "rescript clean",
"format-all": "rescript format -all",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"rescript",
"remix"
],
"files": [
"src",
"bsconfig.json",
"registerRoutes.js"
],
"author": {
"email": "[email protected]",
"name": "Tom Sherman",
"url": "https://github.com/tom-sherman"
},
"repository": {
"type": "git",
"url": "https://github.com/cobbweb/rescript-remix.git"
},
"license": "MIT",
"devDependencies": {
"@glennsl/rescript-jest": "^0.10.0",
"@rescript/react": "^0.11.0",
"mock-fs": "^5.2.0",
"rescript": "^10.1.4",
"rescript-nodejs": "^14.4.0",
"rescript-webapi": "^0.8.0"
},
"jest": {
"testMatch": [
"**/*_spec.js"
]
}
}