-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.6 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
{
"name": "arthome-front",
"version": "1.0.0",
"description": "Art@home front-office website",
"main": "index.js",
"license": "MIT",
"author": {
"name": "David Besse",
"url": "https://github.com/David-Besse",
"email": "davidb.webdev@gmail.com"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint ./src/** --no-error-on-unmatched-pattern",
"lint:fix": "eslint --fix ./src/** --no-error-on-unmatched-pattern",
"clean": "rm -rf dist",
"clean:all": "rm -rf dist node_modules yarn.lock package-lock.json",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@types/bootstrap": "^5.2.10",
"babel-loader": "^9.1.3",
"bundle-stats-webpack-plugin": "^4.13.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"cssnano": "^6.1.2",
"dotenv-flow": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jsdom": "^23.2.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.39",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.6.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.77.8",
"sass-loader": "^14.2.1",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"js-cookie": "^3.0.5",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-bootstrap": "^0.26.3",
"react-router-dom": "^6.25.1",
"redux": "^5.0.1"
},
"jest": {
"modulePaths": [
"./"
],
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
]
}
}