forked from shakacode/rescript-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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
57
58
59
60
61
62
{
"name": "rescript-dnd",
"version": "4.0.0",
"description": "Drag-n-drop for @rescript/react",
"main": "src/Dnd.re",
"author": "Alex Fedoseev <alex@fedoseev.mx>",
"license": "MIT",
"scripts": {
"start": "parcel examples/index.html",
"prestart": "yarn run res:build:dev",
"build": "parcel build examples/index.html",
"prebuild": "yarn run res:build",
"res:build": "RES_LOG=off rescript build -with-deps",
"res:build:dev": "RES_LOG=*,rescript-dnd=* rescript build -with-deps",
"res:watch": "RES_LOG=*,rescript-dnd=* rescript build -with-deps -w",
"res:clean": "rescript clean",
"clean": "rm -rf dist && yarn run res:clean",
"test": "exit 0",
"format": "rescript format -all",
"deploy": "vercel deploy dist --prod",
"predeploy": "yarn run build"
},
"files": [
"src",
"bsconfig.json"
],
"keywords": [
"react",
"rescript",
"rescript-react",
"reason",
"reason-react",
"reasonml",
"ocaml",
"bucklescript",
"ui",
"dnd",
"drag-n-drop"
],
"repository": {
"type": "git",
"url": "https://github.com/shakacode/rescript-dnd"
},
"dependencies": {
"rescript-logger": "2.0.2"
},
"peerDependencies": {
"@rescript/react": ">=0.10.3",
"bs-webapi": ">=0.15.9"
},
"devDependencies": {
"@rescript/react": "0.10.3",
"autoprefixer": "9.8.6",
"bs-webapi": "0.19.1",
"bsb-js": "1.1.7",
"parcel-bundler": "1.12.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"rescript": "9.1.4",
"rescript-classnames": "6.0.0"
}
}