-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.14 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
{
"name": "ud3-frontend",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=14.19"
},
"scripts": {
"dev": "next dev",
"dev:vagrant": "NODE_EXTRA_CA_CERTS=../../puppet/files/certs/ca.cert.pem next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"lint:check": "next lint",
"format": "prettier . --write --ignore-path ./.gitignore",
"format:check": "prettier . --check --ignore-path ./.gitignore",
"types:check": "tsc -v && tsc",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test:unit": "jest",
"test:e2e": "playwright test",
"ci": "yarn types:check & yarn lint:check & yarn format:check",
"postinsall": "patch-package --error-on-fail=false"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn lint:check"
}
},
"dependencies": {
"@auth0/nextjs-auth0": "^2.4.0",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@hookform/resolvers": "^2.9.7",
"@hotjar/browser": "^1.0.9",
"@sentry/nextjs": "^7.86.0",
"@types/react-draft-wysiwyg": "^1.13.7",
"@xstate/react": "^1.3.1",
"base-64": "^1.0.0",
"bootstrap": "^4.5.3",
"clipboard-copy": "^4.0.1",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.16.1",
"deep-object-diff": "^1.1.0",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"fastest-levenshtein": "^1.0.12",
"html-to-draftjs": "^1.5.0",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"immutable": "^4.2.4",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"next": "^12.3.0",
"next-absolute-url": "^1.2.2",
"path-to-regexp": "^6.2.0",
"polished": "^4.0.5",
"react": "^17.0.2",
"react-bootstrap": "^1.4.0",
"react-bootstrap-typeahead": "^5.1.2",
"react-cookie": "^4.0.3",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.15.0",
"react-gauge-component": "^1.2.0",
"react-hook-form": "^7.43.0",
"react-i18next": "^11.7.3",
"react-query": "^3.2.0",
"react-router": "^5.2.0",
"react-table": "^7.6.3",
"sanitize-html": "^2.13.1",
"sass": "^1.27.0",
"sass-loader": "^10.0.4",
"socket.io-client": "2.3.0",
"stream-browserify": "^3.0.0",
"string-strip-html": "^7.0.3",
"styled-components": "^5.2.0",
"use-deep-compare-effect": "^1.8.1",
"xstate": "^4.17.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@playwright/test": "1.31.2",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.8.0",
"@types/lodash": "^4.14.168",
"@types/react-bootstrap-typeahead": "^5.1.8",
"@types/react-datepicker": "^4.8.0",
"@types/react-query": "^1.1.2",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-jest": "^26.6.1",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^45.0.1",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"jest-fetch-mock": "^3.0.3",
"jsconfig-paths-jest-mapper": "^1.0.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.9.4"
}
}