-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.62 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
{
"name": "nextpay",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"bs": "yarn build && yarn start",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"release": "standard-version",
"release:test": "standard-version --dry-run",
"release:minor": "standard-version --release-as minor",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"upgrade-latest": "npx npm-check -u",
"tsc": "tsc",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/babel-plugin": "^11.3.0",
"bech32": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"express-rate-limit": "^5.3.0",
"next": "^11.1.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.19.6",
"react-spinners": "^0.11.0",
"styled-components": "^5.3.0",
"styled-theming": "^2.2.0",
"typescript": "^4.3.5",
"utf8": "^3.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/cors": "^2.8.12",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "^16.6.1",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^17.0.18",
"@types/styled-components": "^5.1.12",
"@types/styled-theming": "^2.2.5",
"@types/utf8": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"babel-preset-react-app": "^10.0.0",
"devmoji": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1"
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"jest --bail --findRelatedTests",
"eslint --fix"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}