-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "carbon-neutral",
"private": true,
"version": "0.1.0",
"scripts": {
"build": "./bin/webpack",
"dev": "./bin/webpack-dev-server",
"lint": "bundle exec rubocop -a -r ./config/exclude_corrected_formatter -f ExcludeCorrectedFormatter; bundle exec rails_best_practices . --silent; prettier '**/*.{js,json,md,yml}' --write; eslint '**/*.js' --fix; stylelint 'frontend/styles/**/*.css' --fix",
"postinstall": "cp node_modules/leaflet/dist public/leaflet -r"
},
"dependencies": {
"@rails/actioncable": "^6.0.0-alpha",
"@rails/activestorage": "^6.0.0-alpha",
"@rails/ujs": "^6.0.0-alpha",
"@rails/webpacker": "^5.1.1",
"accessible-autocomplete": "^2.0.3",
"babel-preset-hyperdom": "^2.0.0",
"httpism": "^3.26.0",
"hyperdom": "^2.1.0",
"leaflet": "^1.5.1",
"leaflet-gesture-handling": "^1.1.8",
"leaflet.markercluster": "^1.4.1",
"lowscore": "^1.17.0",
"postcode-validator": "^3.0.0",
"postcss-custom-media": "^7.0.8",
"postcss-inherit": "^4.1.0",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"postcss-size": "^3.0.0",
"sidebar-v2": "^0.4.0",
"suitcss-base": "^5.0.0",
"suitcss-components-alert": "^1.3.0",
"suitcss-components-button": "^6.0.2",
"suitcss-components-form-field": "^2.0.0",
"suitcss-utils-display": "^1.0.2",
"suitcss-utils-text": "^1.0.0",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"stylelint": "^12.0.1",
"stylelint-config-suitcss": "^14.0.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"webpack-dev-server": "^3.9.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
],
"Gemfile": [
"bundle exec rubocop -a -r ./config/exclude_corrected_formatter -f ExcludeCorrectedFormatter --force-exclusion",
"git add"
],
"*.{rb,erb}": [
"bundle exec rubocop -a -r ./config/exclude_corrected_formatter -f ExcludeCorrectedFormatter --force-exclusion",
"bundle exec rails_best_practices . --silent",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
}
}