-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.56 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
{
"name": "slackdeletron",
"version": "1.0.0",
"description": "Manage and delete your Slack Files",
"author": {
"name": "Drew Minns",
"url": "https://drewminns.com"
},
"main": "index.js",
"scripts": {
"dev": "npx webpack-dev-server --mode development --devtool inline-source-map --hot --port $PORT",
"build": "NODE_ENV=production webpack -p --mode=production --config=webpack.prod.js"
},
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
},
"keywords": [],
"license": "GPL-3.0-or-later",
"dependencies": {
"@sentry/node": "^5.21.1",
"@sentry/react": "^5.20.1",
"@vercel/node": "^1.7.1",
"cross-fetch": "^3.0.5",
"date-fns": "^2.14.0",
"jsonwebtoken": "^8.5.1",
"polished": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-focus-lock": "^2.4.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.0.1",
"react-spinners": "^0.9.0",
"recoil": "0.0.10",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@svgr/webpack": "^5.4.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"autoprefixer": "^9.8.4",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"prettier": "^2.0.5",
"sass-loader": "^9.0.1",
"sass-resources-loader": "^2.0.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"ts-loader": "^7.0.5",
"typescript-plugin-styled-components": "^1.4.4",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}