This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.94 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
{
"name": "webpack-rails-example",
"version": "0.0.1",
"private": true,
"scripts": {
"server": "webpack-dev-server",
"test": "jest --env=jsdom",
"linter:css": "stylelint 'app/assets/stylesheets/**/*' --syntax scss"
},
"engines": {
"node": "~16.13.1"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@rails/webpacker": "^5.4.3",
"babel-core": "^6.18.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "~6.24.1",
"chart.js": "^2.9.4",
"chartkick": "^3.2.1",
"classnames": "^2.2.3",
"datatables.net-bs4": "^1.12.1",
"highcharts": "^9.0.0",
"history": "~4.6.1",
"immutable": "~3.8.1",
"jquery": "^3.2.1",
"lodash": "~4.17.4",
"moment": "~2.29.4",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^1.3.1",
"react-redux": "^5.0.4",
"react-router": "^5.0.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-select2-wrapper": "^1.0.4-beta3",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"stats-webpack-plugin": "^0.6.0",
"superagent": "~7.0.2",
"superagent-as-promised": "~4.0.0",
"webpack": "^4.33.0",
"webpack-dev-server": "^3.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"stylelint": "^15.10.1",
"stylelint-config-idiomatic-css": "^1.1.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-scss": "^3.5.1",
"webpack-cli": "^3.3.3"
},
"jest": {
"modulePathIgnorePatterns": [
"config/webpack/test.js"
]
}
}