-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
119 lines (119 loc) · 3.9 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
{
"name": "gallformers",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"generate": "npx prisma generate",
"check-types": "tsc --noEmit",
"type-coverage": "npx type-coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest",
"test:watch": "jest --watchAll",
"migrate": "node migrate.js",
"migrate-debug": "node --nolazy --inspect-brk=9229 migrate.js"
},
"typeCoverage": {
"atLeast": 99.5,
"cache": false,
"ignoreCatch": true,
"ignoreFiles": [
"__tests__/**",
"pages/_app.tsx",
"hooks/useRenderingTrace.ts"
],
"strict": true
},
"dependencies": {
"@aws-sdk/client-s3": "^3.454.0",
"@aws-sdk/s3-request-presigner": "^3.454.0",
"@aws-sdk/util-create-request": "^3.451.0",
"@hookform/resolvers": "^3.3.2",
"@prisma/client": "^5.6.0",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.6.2",
"bootstrap": "^5.3.2",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"fp-ts": "^2.16.1",
"gray-matter": "^4.0.3",
"jest-environment-jsdom": "^29.7.0",
"jimp": "^0.22.10",
"jquery": "^3.7.1",
"logging-ts": "^0.3.4",
"monocle-ts": "^2.3.13",
"natural": "^6.8.0",
"newtype-ts": "^0.3.5",
"next": "^14.0.3",
"next-auth": "^4.24.5",
"nuka-carousel": "^7.0.0",
"pino": "^8.16.2",
"pino-pretty": "^11.0.0",
"popper.js": "^1.16.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-bootstrap-typeahead": "^6.3.2",
"react-data-table-component": "^7.6.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-is": "^18.2.0",
"react-markdown": "^9.0.1",
"react-simple-maps": "^3.0.0",
"react-simple-tree-menu": "^1.1.18",
"react-tooltip": "^5.23.0",
"rehype-external-links": "^3.0.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-html": "^16.0.1",
"remove": "^0.1.5",
"sanitize-filename": "^1.6.3",
"sass": "^1.69.5",
"sharp": "^0.32.6",
"styled-components": "^6.1.1",
"yarn": "^1.22.21"
},
"resolutions": {
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@hookform/devtools": "^4.3.1",
"@next/eslint-plugin-next": "^14.0.3",
"@simbathesailor/use-what-changed": "^2.0.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.8",
"@types/natural": "^5.1.5",
"@types/node": "^20.9.2",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-is": "^18.2.4",
"@types/react-simple-maps": "^3.0.4",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-check": "^3.14.0",
"flatted": "^3.2.9",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"type-coverage": "^2.27.0",
"typescript": "^5.2.2",
"why-is-node-running": "^2.2.2"
},
"packageManager": "[email protected]"
}