-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "stimulus_reflex",
"version": "3.5.2",
"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": "https://github.com/stimulusreflex/stimulus_reflex/issues",
"repository": "https://github.com/stimulusreflex/stimulus_reflex",
"license": "MIT",
"author": "Nathan Hopkins <[email protected]>",
"contributors": [
"Andrew Mason <[email protected]>",
"Julian Rubisch <[email protected]>",
"Marco Roth <[email protected]>",
"Nathan Hopkins <[email protected]>"
],
"main": "./dist/stimulus_reflex.js",
"module": "./dist/stimulus_reflex.js",
"browser": "./dist/stimulus_reflex.js",
"import": "./dist/stimulus_reflex.js",
"unpkg": "./dist/stimulus_reflex.umd.js",
"umd": "./dist/stimulus_reflex.umd.js",
"files": [
"dist/*",
"javascript/*"
],
"scripts": {
"lint": "yarn run format --check",
"format": "yarn run prettier-standard ./javascript/**/*.js rollup.config.mjs",
"build": "yarn rollup -c",
"build:watch": "yarn rollup -wc",
"watch": "yarn build:watch",
"test": "web-test-runner javascript/test/**/*.test.js",
"test:watch": "yarn test --watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs && cp docs/_redirects docs/.vitepress/dist",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"@hotwired/stimulus": ">= 3.0"
},
"dependencies": {
"@hotwired/stimulus": "^3",
"@rails/actioncable": "^6 || ^7",
"cable_ready": "^5.0.5"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"prettier-standard": "^16.4.1",
"rollup": "^4.22.4",
"toastify-js": "^1.12.0",
"vitepress": "^1.0.0-beta.1"
}
}