-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "egt-payment",
"version": "1.2.0",
"private": true,
"description": "Payment page for Elysium Gaming Tübingen e.V.",
"keywords": [
"payment",
"association",
"mollie"
],
"author": "Frédéric Bolvin <[email protected]> (https://f-bit.software)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Fensterbank/egt-payment.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/pro-light-svg-icons": "./vendor/fortawesome-pro-light-svg-icons-5.14.0.tgz",
"@fortawesome/pro-solid-svg-icons": "./vendor/fortawesome-pro-solid-svg-icons-5.14.0.tgz",
"@fortawesome/react-fontawesome": "^0.1.14",
"@mollie/api-client": "^3.4.0",
"@tailwindcss/ui": "^0.7.2",
"@types/btoa": "^1.2.3",
"btoa": "^1.2.1",
"clsx": "^1.1.1",
"easyverein": "^0.5.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^13.3.1",
"eslint-config-nextjs": "^1.0.6",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"isomorphic-unfetch": "^3.1.0",
"lint-staged": "^10.5.3",
"next": "^13.3.1",
"pattern.css": "^1.0.0",
"postcss": "^8.1.14",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.32.0",
"tailwindcss": "^2.0.2",
"typescript": "^4.7.4",
"@types/node": "^14.14.19",
"@types/react": "^18.0.38",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-plugin-module-resolver": "^4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache",
"pretty-quick --staged"
]
}
}