-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.92 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
{
"name": "at-mentions",
"version": "1.0.0",
"description": "react mentions",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./scripts/config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./scripts/config/webpack.prod.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "~4.10.0",
"@typescript-eslint/parser": "~4.10.0",
"autoprefixer": "^9.8.8",
"babel-eslint": "~8.2.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"eslint": "~7.16.0",
"eslint-config-prettier": "~7.1.0",
"eslint-config-standard": "~16.0.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.3.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-react": "~7.21.5",
"eslint-plugin-react-hooks": "~4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.4.2",
"node-sass": "^6.0.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.3.9",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.21.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17",
"terser-webpack-plugin": "^5.2.4",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.55.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.0-3"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.15.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/react-router-dom": "^5.3.2",
"classnames": "^2.3.1",
"husky": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 9",
"not op_mini all"
]
}