forked from python-discord/forms-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.69 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
88
89
90
91
92
93
94
95
{
"name": "pydis-forms-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": "18.* || 20.*"
},
"license": "MIT",
"dependencies": {
"@codemirror/lang-python": "^6.1.6",
"@emotion/react": "11.11.4",
"@fortawesome/fontawesome-svg-core": "6.5.2",
"@fortawesome/free-brands-svg-icons": "6.5.2",
"@fortawesome/free-solid-svg-icons": "6.5.2",
"@fortawesome/react-fontawesome": "0.2.2",
"@reduxjs/toolkit": "^2.2.6",
"@sentry/react": "8.17.0",
"@svgr/webpack": "8.1.0",
"@swc/core": "1.6.13",
"@uiw/codemirror-theme-atomone": "^4.23.0",
"@uiw/react-codemirror": "^4.23.0",
"axios": "1.7.2",
"copy-webpack-plugin": "12.0.2",
"fs-extra": "11.2.0",
"html-webpack-plugin": "5.6.0",
"identity-obj-proxy": "3.0.0",
"react": "18.3.1",
"react-app-polyfill": "3.0.0",
"react-dom": "18.3.1",
"react-flip-move": "^3.0.5",
"react-redux": "^9.1.2",
"react-router-dom": "6.24.1",
"react-spinners": "0.14.1",
"react-transition-group": "4.4.5",
"smoothscroll-polyfill": "0.4.4",
"swc-loader": "0.2.6",
"typescript": "5.5.3",
"universal-cookie": "7.1.4",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-manifest-plugin": "5.0.0",
"workbox-webpack-plugin": "7.1.0"
},
"scripts": {
"start": "webpack serve --node-env=development",
"build": "webpack",
"test": "jest",
"lint": "eslint --cache src/",
"prepare": "husky install .config/husky"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@swc/jest": "0.2.36",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@types/react-transition-group": "4.4.10",
"@types/smoothscroll-polyfill": "0.3.4",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"dotenv": "16.4.5",
"eslint": "9.6.0",
"eslint-plugin-react": "7.34.3",
"globals": "^15.8.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-resolve": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"webpack-dev-server": "5.0.4"
}
}