-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "anthias",
"version": "1.0.0",
"scripts": {
"dev": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint:check": "eslint static/src",
"lint:fix": "eslint static/src --fix",
"format:check": "prettier --check static/src",
"format:fix": "prettier --write static/src",
"test": "jest --silent"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@reduxjs/toolkit": "^2.11.2",
"bootstrap": "^5.3.8",
"i18next": "^25.8.5",
"i18next-browser-languagedetector": "^8.2.0",
"jquery": "^4.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-icons": "^5.5.0",
"react-redux": "^9.1.0",
"react-router": "^7.13.0",
"react-router-dom": "^7.13.0",
"sweetalert2": "^11.26.17"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bootstrap": "^5.2.10",
"@types/jest": "^30.0.0",
"@types/jquery": "^3.5.33",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.39.0",
"babel-loader": "^10.0.0",
"classnames": "^2.5.1",
"css-loader": "^7.1.3",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fixed-jsdom": "^0.0.11",
"mini-css-extract-plugin": "^2.10.0",
"msw": "^2.12.7",
"prettier": "3.8.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.6",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
}
}