-
-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.91 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.91 KB
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": "alchemy_admin",
"type": "module",
"scripts": {
"test": "vitest --run",
"lint": "prettier --check 'app/javascript/**/*.js'",
"eslint": "eslint app/javascript/**/*.js",
"build:js": "rollup -c",
"build:icons": "bun run bundles/remixicon.mjs",
"build:css": "sass --style=compressed --no-source-map --load-path app/assets/stylesheets --load-path vendor/assets/stylesheets --load-path node_modules/cropperjs/dist app/stylesheets/alchemy/admin.scss:app/assets/builds/alchemy/admin.css app/stylesheets/alchemy/admin/print.scss:app/assets/builds/alchemy/admin/print.css app/stylesheets/alchemy/welcome.scss:app/assets/builds/alchemy/welcome.css app/stylesheets/tinymce/skins/content/alchemy/content.scss:app/assets/builds/tinymce/skins/content/alchemy/content.min.css app/stylesheets/tinymce/skins/content/alchemy-dark/content.scss:app/assets/builds/tinymce/skins/content/alchemy-dark/content.min.css app/stylesheets/tinymce/skins/ui/alchemy-dark/content.scss:app/assets/builds/tinymce/skins/ui/alchemy-dark/content.min.css app/stylesheets/tinymce/skins/ui/alchemy/content.scss:app/assets/builds/tinymce/skins/ui/alchemy/content.min.css app/stylesheets/tinymce/skins/ui/alchemy/skin.scss:app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css app/stylesheets/tinymce/skins/ui/alchemy-dark/skin.scss:app/assets/builds/tinymce/skins/ui/alchemy-dark/skin.min.css app/stylesheets/alchemy/admin/page-select.scss:app/assets/builds/alchemy/admin/page-select.css app/stylesheets/alchemy/dark-theme.scss:app/assets/builds/alchemy/dark-theme.css app/stylesheets/alchemy/light-theme.scss:app/assets/builds/alchemy/light-theme.css app/stylesheets/alchemy/theme.scss:app/assets/builds/alchemy/theme.css",
"handlebars:compile": "handlebars app/javascript/alchemy_admin/templates/*.hbs -f app/javascript/alchemy_admin/templates/compiled.js -o -m",
"build": "bun run --bun build:js && bun run --bun build:css && bun run --bun handlebars:compile && bun run build:icons"
},
"keywords": [],
"author": "Thomas von Deyen",
"license": "BSD-3-Clause",
"engines": {
"node": "24.x"
},
"dependencies": {
"@rails/ujs": "^7.1.502",
"@shoelace-style/shoelace": "^2.20.1",
"@ungap/custom-elements": "^1.3.0",
"clipboard": "^2.0.11",
"cropperjs": "^1.6.2",
"flatpickr": "^4.6.13",
"handlebars": "^4.7.8",
"jquery": "^3.7.1",
"keymaster": "^1.6.2",
"select2": "github:select2/select2#3.5.4",
"sortablejs": "^1.15.7",
"tinymce": "^8.3.2"
},
"devDependencies": {
"@herb-tools/linter": "^0.8.10",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"consola": "^3.4.2",
"eslint": "^10.0.3",
"jsdom": "^28.1.0",
"jsdom-testing-mocks": "^1.16.0",
"prettier": "^3.8.1",
"remixicon": "^4.9.1",
"rollup": "^4.59.0",
"sass": "^1.98.0",
"svg-sprite": "^2.0.4",
"vitest": "^4.0.18"
}
}