This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.51 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
{
"name": "firefighters_monitor",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint app/javascript app/assets",
"lint-styles": "stylelint 'app/**/*.css' 'app/**/*.scss'",
"build:css": "postcss ./app/assets/stylesheets/application.postcss.css -o ./app/assets/builds/application.css",
"build": "webpack --config webpack.config.js"
},
"dependencies": {
"@babel/preset-env": "^7.16.11",
"@hotwired/turbo-rails": "^7.0.0-beta.5",
"@rails/actioncable": "^7.0.2",
"@rails/activestorage": "^7.0.2",
"@rails/ujs": "^7.0.2",
"@sentry/browser": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"cable_ready": "^4.5.0",
"core-js": "3",
"flatpickr": "^4.6.11",
"idlejs": "^3.0.0",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"postcss-custom-properties": "^12.1.4",
"postcss-easy-import": "^4.0.0",
"postcss-nesting": "^10.1.3",
"stimulus": "^2.0.0",
"stimulus_reflex": "^3.4.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/eslint-parser": "^7.17.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0"
}
}