-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.21 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.21 KB
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
{
"author": "Victor Stodell",
"name": "cornball-react",
"description": "Cornball",
"version": "5.2.5",
"private": true,
"homepage": "https://cornball.se",
"repository": {
"type": "git",
"url": "git@github.com:lovlka/cornball-react.git"
},
"scripts": {
"start": "webpack serve --config ./webpack.dev.js",
"build": "webpack --config ./webpack.prod.js",
"analyze": "webpack --config ./webpack.analyze.js",
"lint:js": "eslint ./src",
"lint:css": "stylelint ./src/styles",
"lint": "npm run lint:js && npm run lint:css"
},
"pre-commit": {
"run": [
"lint"
]
},
"dependencies": {
"classnames": "^2.3.2",
"core-js": "^3.30.2",
"firebase": "^9.16.0",
"immutable": "^4.2.2",
"interactjs": "1.10.17",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-intl": "^6.4.3",
"react-redux": "^8.0.7",
"react-spinners": "^0.13.8",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"regenerator-runtime": "^0.13.11",
"reselect": "^4.1.8"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"pre-commit": "^1.2.2",
"react-refresh": "^0.14.0",
"sass": "^1.75.0",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"stylelint": "^16.4.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.10.0"
}
}