forked from shakacode/react-webpack-rails-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
135 lines (135 loc) · 4.23 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "react-webpack-rails-tutorial",
"version": "1.1.0",
"description": "Code from the React Webpack tutorial.",
"engines": {
"node": "16.13.2",
"yarn": "1.22.17"
},
"repository": {
"type": "git",
"url": "https://github.com/shakacode/react-webpack-rails-tutorial.git"
},
"author": "justin808",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakacode/react-webpack-rails-tutorial/issues"
},
"homepage": "https://github.com/shakacode/react-webpack-rails-tutorial",
"scripts": {
"lint:eslint": "yarn eslint client --ext \".js,.jsx,.ts\"",
"lint:prettier": "yarn prettier \"**/*.@(js|jsx)\" --list-different",
"lint": " yarn lint:eslint --fix && yarn lint:prettier --w",
"test": "yarn build:test && yarn lint",
"test:client": "cd client && yarn test",
"build:test": "rm -rf public/webpack/test && RAILS_ENV=test NODE_ENV=test bin/webpacker",
"build:dev": "rm -rf public/webpack/development && RAILS_ENV=development NODE_ENV=development bin/webpacker",
"build:clean": "rm -rf public/webpack || true"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@rails/actioncable": "6.1.4-4",
"autoprefixer": "^7.1.5",
"axios": "^0.17.1",
"babel-loader": "8",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap-loader": "judahmeek/bootstrap-loader#judahmeek/webpack-5",
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.5",
"compression-webpack-plugin": "9",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.1",
"es5-shim": "^4.5.9",
"estraverse": "^4.2.0",
"expose-loader": "^1.0.0",
"immutable": "^3.8.2",
"imports-loader": "^1.1.0",
"intl": "^1.2.5",
"jquery": "^3.2.1",
"jquery-ujs": "^1.2.2",
"loader-utils": "^1.1.0",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"node-uuid": "^1.4.8",
"postcss": "^8.4.5",
"postcss-loader": "6.2.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-addons-css-transition-group": "^15.6.2",
"react-bootstrap": "^0.31.5",
"react-dom": "^17.0.2",
"react-intl": "^5.24.1",
"react-on-rails": "12.5.2",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"resolve-url-loader": "^2.2.0",
"sass": "^1.46.0",
"sass-loader": "^12.4.0",
"sass-resources-loader": "^2.2.4",
"shakapacker": "6.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "5",
"turbolinks": "^5.2.0",
"url-loader": "^0.6.2",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-merge": "5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@webpack-cli/serve": "^1.6.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.4.2",
"babel-loader": "^8.2.3",
"body-parser": "^1.18.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-shakacode": "^19.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"estraverse-fb": "^1.3.2",
"express": "^4.16.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^2.4.6",
"preload-webpack-plugin": "^3.0.0-alpha.1",
"prettier": "^2.2.1",
"prettier-eslint-cli": "^5.0.1",
"react-refresh": "^0.11.0",
"react-transform-hmr": "^1.0.4",
"regenerator-runtime": "^0.12.1",
"sleep": "^6.2.0",
"webpack-dev-server": "^4.7.3"
},
"browser": {
"fs": false
},
"jest": {
"moduleNameMapper": {
"\\.scss$": "identity-obj-proxy"
},
"setupFiles": [
"./app/libs/testHelper.js"
],
"testRegex": "./app/.*.spec\\.jsx?$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}