-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "placecal",
"version": "2.0.0",
"private": true,
"dependencies": {
"@hotwired/stimulus": "3.2.2",
"@hotwired/turbo-rails": "7.3.0",
"@nathanvda/cocoon": "1.2.14",
"@rails/ujs": "6.1.710",
"bootstrap": "4.6.2",
"datatables.net-bs4": "1.13.11",
"esbuild": "0.24.0",
"esbuild-rails": "1.0.7",
"jquery": "3.7.1",
"leaflet": "1.9.4",
"lodash": "4.17.21",
"popper.js": "1.16.1",
"sass": "1.83.0",
"select2": "4.0.13"
},
"devDependencies": {
"husky": "8.0.3",
"lint-staged": "13.3.0",
"prettier": "2.8.1"
},
"scripts": {
"build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds",
"build:css": "sass ./app/assets/stylesheets/application.sass ./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"lint-staged": {
"*.{css,html,js,json,md,scss,yml}": "prettier --write",
"{*.{rb,jbuilder,rake,ru},.simplecov,Gemfile,Rakefile}": "bundle exec rubocop --force-exclusion --autocorrect"
},
"engines": {
"node": "20.18.1"
}
}