-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.64 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
63
64
65
{
"name": "rescript-dnd",
"version": "6.0.0",
"description": "Drag-n-drop for @rescript/react",
"author": "Alex Fedoseev <[email protected]>",
"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",
"rescript.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": "4.0.0"
},
"peerDependencies": {
"@rescript/react": ">=0.12.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"rescript": ">=11.0.0",
"rescript-webapi": ">=0.6.0"
},
"devDependencies": {
"@rescript/react": "0.12.1",
"autoprefixer": "10.4.17",
"parcel": "2.11.0",
"postcss": "8.4.35",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"rescript": "11.0.1",
"rescript-classnames": "7.0.0",
"rescript-webapi": "0.9.1"
}
}