-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.55 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
{
"lint-staged": {
"app/**/*.{html,md,js,jsx,json,yml}": [
"prettier --write",
"git add"
],
"{app,test}/**/*.rb": [
"standardrb --fix",
"git add"
],
"{app,test}/**/*html.erb": [
"bundle exec htmlbeautifier",
"git add"
],
"*.{js,css,md}": "prettier --write"
},
"name": "rails_ossdatabase",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.17.12",
"@hotwired/stimulus": "^3.0.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^7.1.3",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.4",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"chart.js": "^3.9.1",
"chartkick": "^4.2.0",
"jquery": "^3.5.0",
"lodash": "^4.17.21",
"morphdom": "^2.6.1",
"notyf": "^3.10.0",
"postcss": "8.2.13",
"postcss-loader": "^4.2.0",
"scroll-into-view-if-needed": "^2.2.29",
"slim-select": "^1.26.0",
"stimulus-use": "^0.50.0",
"tailwindcss-stimulus-components": "^3.0.4",
"trix": "^2.0.0-beta.0"
},
"version": "0.1.0",
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"tailwindcss": "^3.0.23",
"webpack-dev-server": "^3.10.1"
},
"engines": {
"node": "^16.15.0",
"yarn": "^1.21.1"
},
"scripts": {
"prepare": "husky install"
}
}