-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
207 lines (207 loc) · 7.23 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"name": "gcforms",
"version": "3.28.0",
"private": true,
"prisma": {
"seed": "tsx prisma/seeds/seed_cli.ts --environment=development"
},
"workspaces": [
"flag_initialization",
"utils/*"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"useTabs": false,
"semi": true,
"singleQuote": false
},
"scripts": {
"dev": "yarn prisma:dev && yarn initialize && next dev",
"dev:turbo": "yarn prisma:dev && yarn initialize && next dev --turbo",
"dev:secure": "yarn prisma:dev && yarn initialize && next dev --experimental-https",
"build": "DATABASE_URL=postgres://postgres:chummy@localhost:5432/forms next build --debug",
"start": "yarn prisma:deploy && yarn initialize && NODE_OPTIONS=\"--max-old-space-size=3584\" next start -p ${PORT:-3000}",
"initialize": "yarn workspace flag_initialization initialize",
"prisma:deploy": "prisma migrate deploy && tsx prisma/seeds/seed_cli.ts --environment=production",
"prisma:dev": "prisma migrate dev --skip-seed && tsx prisma/seeds/seed_cli.ts --environment=development",
"prisma:reset": "prisma migrate reset",
"prisma:studio": "prisma studio",
"prisma:test": "prisma migrate deploy && tsx prisma/seeds/seed_cli.ts --environment=test",
"start:test": "yarn prisma:test && yarn initialize && APP_ENV=test NEXT_PUBLIC_APP_ENV=test next start",
"dev:test": "prisma migrate reset -f --skip-seed && yarn prisma:test && yarn initialize && APP_ENV=test NEXT_PUBLIC_APP_ENV=test next dev --turbo",
"build:test": "APP_ENV=test NEXT_PUBLIC_APP_ENV=test next build",
"lint": "next lint && tsc --noEmit",
"lint:tailwindcss": "eslint -c .eslint-tailwindcss.js",
"lint:report": "eslint --output-file eslint_report.json --format json . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:vitest": "vitest run",
"test:watch:vitest": "vitest --watch",
"test:watch": "DEBUG_PRINT_LIMIT=10000 jest --watch",
"cypress": "cypress open",
"cypress:run": "CYPRESS_DEBUG=true cypress run --browser chrome",
"cypress:e2e": "cypress run --browser chrome --e2e",
"cypress:component": "cypress run --browser chrome --component",
"postinstall": "yarn node -e \"process.env.NODE_ENV != 'production' && process.exit(1)\" || husky install"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.14",
"@aws-sdk/client-cognito-identity-provider": "3.515.0",
"@aws-sdk/client-dynamodb": "3.515.0",
"@aws-sdk/client-lambda": "3.515.0",
"@aws-sdk/client-s3": "3.515.0",
"@aws-sdk/client-sqs": "3.515.0",
"@aws-sdk/lib-dynamodb": "3.515.0",
"@casl/ability": "6.5.0",
"@cdssnc/gcds-tokens": "^1.20.0",
"@headlessui/react": "^1.7.18",
"@lexical/react": "^0.12.6",
"@neshca/cache-handler": "^1.2.1",
"@prisma/client": "^5.10.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-tooltip": "^1.1.1",
"@zitadel/node": "^2.0.21",
"axios": "1.7.7",
"clsx": "^2.1.1",
"copy-to-clipboard": "3.3.3",
"csv-writer": "^1.6.0",
"d3-hierarchy": "^3.1.2",
"downshift": "^8.3.1",
"file-type": "^19.0.0",
"formik": "2.4.6",
"htmlparser2": "8.0.2",
"i18next": "^23.16.4",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"immer": "10.0.3",
"ioredis": "5.3.2",
"jsonschema": "1.4.1",
"jszip": "^3.10.1",
"lexical": "^0.12.6",
"lodash.debounce": "4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.set": "4.3.2",
"lodash.unset": "4.5.2",
"markdown-to-jsx": "7.5.0",
"next": "14.2.15",
"next-auth": "5.0.0-beta.22",
"node-fetch": "^3.3.2",
"pino": "9.1.0",
"prisma": "^5.22.0",
"react": "^18.3.1",
"react-app-polyfill": "3.0.0",
"react-aria": "3.31.0",
"react-complex-tree": "^2.4.5",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.0",
"react-loading-skeleton": "^3.4.0",
"react-roving-tabindex": "^3.2.0",
"react-select": "5.8.0",
"react-tabs": "4.3.0",
"react-toastify": "9.1.3",
"reactflow": "^11.11.3",
"server-only": "^0.0.1",
"swr": "2.2.5",
"tailwind-merge": "^2.2.0",
"ts-command-line-args": "2.5.1",
"tsx": "^4.7.0",
"unorm": "^1.6.0",
"usehooks-ts": "2.9.1",
"uuid": "9.0.1",
"valibot": "^0.30.0",
"zustand": "5.0.1"
},
"devDependencies": {
"@aws-sdk/types": "^3.515.0",
"@babel/core": "^7.23.6",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@next/eslint-plugin-next": "^13.5.6",
"@testing-library/dom": "^8.20.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/d3-hierarchy": "^3",
"@types/formidable": "^2.0.6",
"@types/i18n": "^0.13.12",
"@types/ioredis-mock": "^8.2.5",
"@types/jest": "^29.5.11",
"@types/json2md": "^1.5.4",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4",
"@types/lodash.merge": "^4",
"@types/lodash.set": "^4.3.9",
"@types/lodash.unset": "^4.5.9",
"@types/node": "^20.11.6",
"@types/node-fetch": "^2.6.9",
"@types/pg": "^8.10.9",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-tabs": "^2.3.4",
"@types/unorm": "^1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/typescript-estree": "^7.13.1",
"add": "^2.0.6",
"autoprefixer": "^10.4.16",
"aws-sdk-client-mock": "^3.0.0",
"axe-core": "^4.8.3",
"babel-loader": "^8.3.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-transform-require-context": "^0.1.1",
"css-loader": "^6.8.1",
"cssnano": "^5.1.15",
"cypress": "^13.15.1",
"cypress-axe": "^1.5.0",
"cypress-each": "^1.13.3",
"cypress-plugin-tab": "^1.0.5",
"cypress-terminal-report": "^6.0.0",
"cypress-wait-until": "^3.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-cypress": "2.15.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^5.11.1",
"husky": "^9.0.10",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.0.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.4",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.3",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.2",
"webpack": "^5.89.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"packageManager": "yarn@4.4.1"
}