-
-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "stimulus_reflex",
"version": "3.5.0-pre9",
"description": "Build reactive applications with the Rails tooling you already know and love.",
"keywords": [
"ruby",
"rails",
"websockets",
"actioncable",
"turbolinks",
"reactive",
"cable",
"ujs",
"ssr",
"stimulus",
"reflex",
"stimulus_reflex",
"dom",
"morphdom"
],
"homepage": "https://docs.stimulusreflex.com/",
"bugs": {
"url": "https://github.com/stimulusreflex/stimulus_reflex/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com:stimulusreflex/stimulus_reflex.git"
},
"license": "MIT",
"author": "Nathan Hopkins <natehop@gmail.com>",
"main": "./dist/stimulus_reflex.umd.min.js",
"module": "./dist/stimulus_reflex.min.js",
"files": [
"dist/*",
"javascript/*"
],
"scripts": {
"lint": "yarn prettier-standard:check",
"format": "yarn prettier-standard:format",
"build": "yarn rollup -c",
"build:watch": "yarn rollup -wc",
"watch": "yarn build:watch",
"prettier-standard:check": "yarn run prettier-standard --check ./javascript/**/*.js rollup.config.js",
"prettier-standard:format": "yarn run prettier-standard ./javascript/**/*.js rollup.config.js",
"test": "web-test-runner javascript/test/**/*.test.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"@hotwired/stimulus": ">= 3.0"
},
"dependencies": {
"@hotwired/stimulus": ">= 3.0",
"@rails/actioncable": ">= 6.0",
"cable_ready": "https://github.com/cableready/dev-builds/archive/cable_ready/7616c18.tar.gz"
},
"devDependencies": {
"@open-wc/testing": "^3.1.2",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@web/dev-server-esbuild": "^0.3.0",
"@web/dev-server-rollup": "^0.3.15",
"@web/test-runner": "^0.13.27",
"flexsearch": "^0.7.31",
"markdown-it": "^13.0.1",
"prettier-standard": "^16.4.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"vitepress": "^1.0.0-alpha.45",
"vue": "^3.2.45"
}
}