-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1018 Bytes
/
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
{
"name": "chordly",
"license": "GNU GENERAL PUBLIC LICENSE Version 3",
"private": "true",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^7.1.1",
"@rails/actiontext": "7.1.3-4",
"@rails/request.js": "^0.0.6",
"@stimulus-components/clipboard": "^5.0.0",
"bulma": "^0.9.4",
"esbuild": "^0.23.0",
"local-time": "^2.1.0",
"puppeteer": "^22.13.0",
"sass": "^1.52.1",
"sortablejs": "^1.15.0",
"trix": "^2.1.3"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --minify",
"build:css": "sass ./app/assets/stylesheets/application.bulma.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules --style=compressed",
"cy:open": "cypress open --project ./spec",
"cy:run": "cypress run --project ./spec"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"cypress": "^13.0.0"
}
}