-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "purescript-react-dnd-basic",
"version": "1.0.0",
"description": "purescript-react-basic bindings for react-dnd",
"main": "index.js",
"scripts": {
"build": "run-s build:*",
"build:spago": "spago build",
"build:pulp": "pulp build -o output-pulp",
"example": "run-s example:*",
"example:basic": "spago --config examples/basic/spago.dhall bundle-app --main Example.Basic --to examples/basic/html/index.js",
"deps": "run-s deps:*",
"deps:spago": "spago install",
"deps:pulp": "bower install",
"clean": "rm -rf .spago bower_components output output-pulp node_modules .pulp-cache .psci_modules",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lumihq/purescript-react-dnd-basic.git"
},
"keywords": [
"react",
"react-basic",
"react-dnd",
"purescript"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lumihq/purescript-react-dnd-basic/issues"
},
"homepage": "https://github.com/lumihq/purescript-react-dnd-basic#readme",
"devDependencies": {
"bower": "^1.8.14",
"esbuild": "^0.14.49",
"npm-run-all": "^4.1.5",
"pulp": "^16.0.2",
"purescript": "^0.15.4",
"spago": "^0.20.9"
},
"dependencies": {
"react": "^18.1.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dnd-test-backend": "^11.1.3",
"react-dnd-touch-backend": "^11.1.3",
"react-dom": "^18.1.0"
}
}