-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.43 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.43 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
69
70
71
{
"name": "bugshot",
"version": "0.4.0",
"description": "Capture visual bugs and report it to redmine",
"author": "SCM Team <scm-team@cloudogu.com>",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"develop": "cross-env NODE_ENV=development webpack --watch",
"format": "prettier --write src static",
"lint": "eslint src/**/*.{ts,tsx} static/**/*.html",
"typecheck": "tsc --noEmit",
"analyze-bundles": "cross-env NODE_ENV=production ANALYZE_BUNDLES=true webpack",
"store-upload": "node scripts/upload.js",
"store-publish": "node scripts/publish.js"
},
"dependencies": {
"@cloudogu/react-img-editor": "^0.4.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"classnames": "^2.3.1",
"nanoid": "^3.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.19.1"
},
"devDependencies": {
"@babel/core": "^7.16.11",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@tailwindcss/forms": "^0.4.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/chrome": "^0.0.178",
"@types/crypto-js": "^4.0.2",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-macros": "^3.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"isomorphic-fetch": "^3.0.0",
"postcss": "^8.4.6",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.22",
"typescript": "^4.5.5",
"webpack": "^5.62.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"zip-webpack-plugin": "^4.0.1"
}
}