-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.74 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
{
"private": true,
"description": "Dummy app",
"scripts": {
"build": "webpack --mode=production --node-env=production -c webpack.prod.js --progress",
"lint": "eslint *.js test/dummy/frontend --fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"start": "webpack -c webpack.dev.js --watch --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Zbigniew Humeniuk <[email protected]>",
"license": "MIT",
"dependencies": {
"@rails/actioncable": "^7.0.4-2",
"@rails/ujs": "^7.0.4-2",
"core-js": "^3.29.0",
"immer": "^9.0.19",
"loco-js": "^6.3.0",
"loco-js-ui": "^6.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mini-css-extract-plugin": "^2.7.3",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.2.4",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.4",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^30.0.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
}
}