-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@clickfunnels/refine-stimulus",
"version": "2.13.3",
"description": "Refine is a flexible query builder for your apps. It lets your users filter down to exactly what they're looking for. Completely configured on the backend.",
"browserslist": [
"defaults",
"not IE 11"
],
"main": "app/assets/javascripts/refine-stimulus.js",
"module": "app/assets/javascripts/refine-stimulus.esm.js",
"unpkg": "app/assets/javascripts/refine-stimulus.umd.js",
"files": [
"app/assets/javascripts/*.js",
"app/assets/javascripts/*.js.map",
"app/javascript/**/*.js",
"app/assets/stylesheets/index.css",
"app/assets/stylesheets/index.tailwind.css"
],
"watch": {
"update-local-installs": {
"patterns": [
"app/javascript/**/*.js",
"app/assets/stylesheets/index.tailwind.css"
]
}
},
"scripts": {
"prebuild": "$npm_execpath run clean",
"build": "$npm_execpath run build:js && $npm_execpath run build:css",
"build:js": "microbundle app/javascript/index.js -o app/assets/javascripts/ --globals @hotwired/stimulus=Stimulus",
"build:css": "tailwindcss -i app/assets/stylesheets/index.tailwind.css -o app/assets/stylesheets/index.css",
"clean": "rimraf app/assets/javascripts app/assets/stylesheets/index.css",
"watch": "npm-watch",
"update-local-installs": "$npm_execpath run build; yalc push"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clickfunnels2/refine-rails.git"
},
"contributors": [
"Colleen Schnettler <[email protected]>",
"Aaron Francis <[email protected]>"
],
"homepage": "https://rubygems.org/gems/refine-rails",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/clickfunnels2/refine-rails/issues"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/runtime": "^7.13.17",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"babel-loader": "^8.2.2",
"microbundle": "^0.13.0",
"npm-watch": "^0.11.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"@hotwired/stimulus": "^3.1.0",
"@rails/request.js": "^0.0.6",
"daterangepicker": "^3.1.0",
"jquery": "^3.5.1",
"jquery-events-to-dom-events": "^1.1.0",
"lodash": "^4.0.8",
"moment": "^2.29.4",
"stimulus-use": "^0.52.0"
},
"peerDependencies": {}
}