-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 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
{
"private": true,
"scripts": {
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"prettier": "prettier --write ./src/**/*.{css,html}",
"eslintFix": "eslint --fix --ext=.tsx --ext=.ts ./src/",
"eslint": "eslint --ext=.tsx --ext=.ts ./src/",
"stylelint": "stylelint ./src/**/**/*.css",
"stylelintFix": "stylelint ./src/**/**/*.css --fix"
},
"dependencies": {
"@codemirror/commands": "^6.3.2",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/state": "^6.3.3",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.22.2",
"@sentry/browser": "^7.14.2",
"@types/base64-js": "^1.2.5",
"@types/chrome": "^0.0.254",
"@types/classnames": "^2.2.9",
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17",
"@types/react-redux": "^7.1.9",
"@types/webpack-env": "^1.15.0",
"@types/yup": "^0.26.28",
"base64-js": "^1.3.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^4.0.0",
"codemirror": "^6.0.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"devtools-protocol": "^0.0.1235375",
"file-loader": "^6.2.0",
"formik": "^2.1.2",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"mobx": "^6.6.1",
"mobx-react-lite": "^3.4.0",
"postcss-loader": "^7.0.1",
"postcss-nesting": "^10.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.3.1",
"svg-react-loader": "^0.4.6",
"ts-loader": "^9.4.1",
"typescript": "^4.5.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"yup": "^0.27.0",
"zip-webpack-plugin": "^4.0.1",
"zod": "^3.11.6",
"zod-validation-error": "^2.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "8.22",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0"
}
}