forked from blackcandy-org/blackcandy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1009 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
31
32
{
"name": "black_candy",
"private": true,
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@hotwired/turbo-rails": "^7.2.1",
"@shopify/draggable": "^1.0.0-beta.12",
"esbuild": "^0.14.9",
"howler": "^2.2.3",
"sass": "^1.54.3"
},
"devDependencies": {
"standard": "^17.0.0",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^5.0.0"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --minify",
"build-dev": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds",
"build:css": "sass app/assets/stylesheets/application.scss:app/assets/builds/application.css --no-source-map --style=compressed",
"build-dev:css": "sass app/assets/stylesheets/application.scss:app/assets/builds/application.css --no-source-map"
},
"standard": {
"globals": [
"IntersectionObserver",
"MediaMetadata",
"Request",
"fetch",
"CustomEvent"
]
}
}