forked from Seldszar/Gumbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.36 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
72
73
74
75
76
77
78
{
"scripts": {
"build:chrome": "webpack --env platform=chrome --mode=production",
"build:firefox": "webpack --env platform=firefox --mode=production",
"develop:chrome": "webpack --env platform=chrome --mode=development --watch",
"develop:firefox": "webpack --env platform=firefox --mode=development --watch",
"prepare": "husky install",
"test": "eslint --ext=js,ts,tsx ."
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@floating-ui/react-dom": "^0.4.3",
"@sentry/browser": "^6.18.1",
"framer-motion": "^6.2.8",
"ky": "^0.29.0",
"lodash-es": "^4.17.21",
"preact": "^10.6.6",
"react-router-dom": "^6.2.1",
"react-use": "^17.3.2",
"swr": "^1.2.2",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@emotion/babel-plugin": "^11.7.2",
"@prefresh/babel-plugin": "^0.4.3",
"@seldszar/yael": "^2.2.0",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/webextension-polyfill": "^0.8.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"babel-plugin-macros": "^3.1.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"twin.macro": "^2.8.2",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
}
}