-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
{
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"file-loader": "^6.2.0",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"postcss": "^8.3.11",
"postcss-loader": "^7.0.0",
"prettier": "^3.3.2",
"raw-loader": "^4.0.2",
"sass": "^1.50.1",
"sass-lint": "^1.13.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.2.5",
"typescript-eslint": "^7.15.0",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.0.0",
"webpack-merge": "^5.8.0"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "webpack --config configuration/webpack.prod.config.js --mode=production",
"dev": "webpack --config configuration/webpack.dev.config.js --mode=development --watch",
"bundle": "npm install && npm run dev",
"lint:sass": "sass-lint -v -q",
"lint:js": "eslint --ext .ts,.tsx src/",
"stats": "webpack --config configuration/webpack.prod.config.js --mode=production --json > stats.json && webpack-bundle-analyzer stats.json"
},
"target": "web",
"dependencies": {
"@floating-ui/dom": "^1.6.10",
"antd": "^5.15.3",
"i18next": "^23.15.1",
"konva": "^9.3.6",
"nanoid": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.2",
"web-highlighter": "^0.7.4"
}
}