-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.82 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
79
80
81
82
83
84
85
86
{
"name": "laws_and_pathways",
"private": true,
"scripts": {
"start": "run-p -r rails:server js:server",
"lint": "run-p lint:rails lint:js",
"lint:fix": "run-p lint:rails:fix lint:js:fix",
"lint:js": "eslint app/javascript --ext js --ext jsx",
"lint:js:fix": "yarn js:lint --fix",
"lint:rails": "bundle exec rubocop",
"lint:rails:fix": "yarn rails:lint -a",
"test": "run-p test:rails test:sast lint:rails rails:bundle-audit",
"test:rails": "bundle exec rspec -p",
"test:sast": "bundle exec brakeman",
"js:server": "yarn install && ./bin/webpack-dev-server",
"rails:server": "bundle exec rails s --binding=0.0.0.0",
"rails:bundle-audit": "bundle exec bundle-audit check --update --ignore CVE-2024-26144"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.10.4",
"@floating-ui/react": "^0.26.25",
"@hotwired/stimulus": "^3.1.0",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/actioncable": "^6.0.3-3",
"@rails/actiontext": "^6.1.7-6",
"@rails/activestorage": "^6.0.3-3",
"@rails/ujs": "^6.0.3-3",
"@rails/webpacker": "^5.2.1",
"@react-aria/dialog": "^3.5.4",
"@react-aria/focus": "^3.14.0",
"@react-aria/overlays": "^3.16.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bulma": "^0.8.0",
"classnames": "^2.2.6",
"country-list": "^2.3.0",
"d3-array": "^2.5.0",
"d3-force": "^2.0.1",
"d3-format": "^1.4.3",
"d3-geo": "^1.12.1",
"d3-geo-projection": "^2.7.1",
"d3-scale": "^3.2.2",
"d3-selection": "^1.4.2",
"date-fns": "^2.15.0",
"fuse.js": "^3.4.5",
"hex-to-rgba": "^2.0.1",
"highcharts": "^7.2.2",
"highcharts-react-official": "^2.2.2",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"qs": "^6.9.4",
"rc-slider": "^8.7.1",
"rc-table": "^7.32.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-responsive": "^8.1.0",
"react-select": "^3.0.8",
"react-simple-maps": "^1.0.0-beta.0",
"react-tooltip": "^3.11.1",
"react_ujs": "^2.6.0",
"simple-statistics": "^7.1.0",
"tiny-slider": "^2.9.3",
"trix": "^1.2.0",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"eslint": "7.9.0",
"eslint-config-airbnb": "18.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"webpack-dev-server": "^3.11.0"
}
}