-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
155 lines (155 loc) · 5.22 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "pay-with-bitpay",
"version": "1.9.0",
"description": "Be alerted whenever a website you visit accepts BitPay as a payment option.",
"repository": "https://github.com/bitpay/pay-with-bitpay.git",
"author": "BitPay",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"yarn": ">= 1.0.0"
},
"scripts": {
"dev:chrome": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "cross-env NODE_ENV=development cross-env TARGET_BROWSER=opera webpack --watch",
"build:chrome": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=chrome webpack",
"build:firefox": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=firefox webpack",
"build:opera": "cross-env NODE_ENV=production cross-env TARGET_BROWSER=opera webpack",
"build": "yarn run build:chrome && yarn run build:firefox && yarn run build:opera",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test:watch": "jest --watch",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.23.9",
"@material-ui/core": "^4.9.9",
"@material-ui/lab": "^4.0.0-alpha.48",
"@researchgate/react-intersection-observer": "^1.1.3",
"advanced-css-reset": "^1.2.2",
"bitauth": "git+https://github.com/bitpay/bitauth.git#6bfe7df3d1cde303507d29a9d9c98b1f429ba46e",
"classnames": "^2.2.6",
"countries-list": "^2.5.6",
"date-fns": "^2.11.1",
"framer-motion": "2.1.0",
"lodash": "^4.17.21",
"material-ui-popup-state": "^1.5.3",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2",
"react-text-mask": "^5.4.3",
"react-tracking": "^7.3.0",
"rxjs": "^6.5.5",
"ts-md5": "1.2.7",
"uuid": "^9.0.1",
"webext-base-css": "^1.4.4",
"webextension-polyfill-ts": "^0.26.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "^2.8.1",
"@abhijithvijayan/eslint-config-airbnb": "^1.1.0",
"@abhijithvijayan/tsconfig": "^1.3.0",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-destructuring": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/classnames": "^2.2.10",
"@types/date-fns": "^2.6.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/history": "^4.7.5",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.190",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.25",
"@types/react-router-dom": "^5.1.3",
"@types/react-text-mask": "^5.4.6",
"@types/react-tracking": "^7.0.2",
"@types/uuid": "^9.0.8",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.17",
"babel-jest": "^26.0.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"filemanager-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^26.0.0",
"mini-css-extract-plugin": "^2.7.7",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path-browserify": "^1.0.1",
"postcss": "^8.4.33",
"postcss-loader": "^8.1.0",
"prettier": "^3.2.4",
"resolve-url-loader": "^5.0.0",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^26.0.0",
"typescript": "4.9.5",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-ext-reloader": "^1.1.12",
"wext-manifest": "^2.1.0",
"wext-manifest-loader": "^2.4.1",
"wext-manifest-webpack-plugin": "^1.4.0",
"write-webpack-plugin": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"raf/polyfill"
],
"testMatch": [
"**/**/*.spec.(js|jsx|ts|tsx)|**/tests/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"setupFilesAfterEnv": [
"<rootDir>source/setupTests.ts"
],
"snapshotSerializers": [
"enzyme-to-json"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
}
}
}