This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.98 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
{
"name": "@galoymoney/react",
"main": "dist/index.js",
"version": "0.1.14",
"license": "MIT",
"repository": "https://github.com/galoymoney/galoy-react",
"scripts": {
"build": "yarn install && yarn build:node && yarn build:webpack",
"build:node": "rm -rf dist && tsc --sourceMap false --skipLibCheck true",
"build:webpack": "webpack --mode=production --env=prod",
"code:check": "yarn tsc:check && yarn eslint:check && yarn prettier:check",
"dev:bundler": "webpack -w --mode=development --env=dev",
"dev:codegen": "graphql-codegen --config codegen.yml",
"eslint:check": "eslint . --ext ts --ext tsx",
"eslint:fix": "eslint . --ext ts --ext tsx --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"test:verify": "jest --coverage",
"test": "jest",
"tsc:check": "tsc --pretty --noEmit --skipLibCheck"
},
"dependencies": {
"@types/intl-tel-input": "^17.0.4",
"html5-qrcode": "^2.1.6",
"intl-tel-input": "^17.0.16",
"use-debounce": "^8.0.3"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-jest": "^28.1.2",
"copyfiles": "^2.4.1",
"css-loader": "^6.5.1",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql": "^16.5.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"mini-css-extract-plugin": "^2.6.1",
"normalize.css": "^8.0.1",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"graphql": "^16.5.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
}
}