-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.66 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
{
"name": "pay-with-planet",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint pages src",
"lint:errors": "eslint pages src --quiet",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"prepare": "node ./husky-prepare.js"
},
"validate-branch-name": {
"pattern": "^(main|develop){1}$|^(feature|hotfix)/[a-z0-9-_]+$",
"errorMsg": "Invalid branch name. \n 1.Branch names can contain lowercase characters, numbers, hyphen and underscore. \n 2.Except for 'main' and 'develop', branch names must begin with 'feature/' or 'hotfix/' "
},
"dependencies": {
"@auth0/auth0-react": "^1.5.0",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.119",
"@mui/material": "^5.11.8",
"@next/bundle-analyzer": "^10.1.3",
"@paypal/react-paypal-js": "^7.8.2",
"@planet-sdk/common": "^0.1.47",
"@sentry/browser": "^6.2.5",
"@sentry/integrations": "^6.2.5",
"@sentry/node": "^6.2.5",
"@sentry/webpack-plugin": "^1.14.2",
"@sparticuz/chromium": "^106.0.2",
"@stripe/react-stripe-js": "^1.4.0",
"@stripe/stripe-js": "^1.13.2",
"axios": "^1.6.0",
"dom-to-image": "^2.6.0",
"geocoder-arcgis": "^2.0.5",
"i18next": "^22.4.10",
"jwt-decode": "^3.1.2",
"material-ui-popup-state": "^5.0.8",
"next": "^13.1.6",
"next-i18next": "^13.1.5",
"puppeteer-core": "^21.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.1.5",
"sass": "^1.35.1",
"styled-jsx": "^5.1.0",
"uuid": "^8.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/plugin-transform-unicode-regex": "^7.22.5",
"@hookform/devtools": "^4.3.1",
"@types/dom-to-image": "^2.6.2",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"cypress": "^8.5.0",
"cypress-plugin-stripe-elements": "^1.0.2",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-i18next": "^5.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.3",
"randexp": "^0.5.3",
"typescript": "^4.2.3",
"validate-branch-name": "^1.3.0"
}
}