forked from jeffdc/gallformers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.75 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.75 KB
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
{
"name": "gallformers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"generate": "npx prisma generate",
"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"
],
"strict": true
},
"dependencies": {
"@aws-sdk/client-s3": "^3.3",
"@aws-sdk/s3-request-presigner": "^3.3",
"@hookform/resolvers": "^2.0",
"@prisma/client": "^3.4",
"axios": "^0.21.2",
"bootstrap": "^4.6",
"classnames": "^2.3",
"fp-ts": "^2",
"io-ts": "^2",
"jimp": "^0.16",
"jquery": "^3.6.0",
"logging-ts": "^0",
"natural": "^5",
"next": "^11",
"next-auth": "^3",
"nuka-carousel": "^4",
"pino": "^6",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"react": "^17",
"react-bootstrap": "^1.6",
"react-bootstrap-typeahead": "^5",
"react-data-table-component": "^7",
"react-dom": "^17",
"react-hook-form": "^7",
"react-hot-toast": "^2",
"react-is": "^17.0.2",
"react-markdown": "^7.0",
"react-simple-maps": "^2.3.0",
"react-simple-tree-menu": "^1",
"react-tooltip": "^4.2.21",
"rehype-raw": "^6",
"rehype-react": "^6.2",
"remark": "^14",
"remark-breaks": "^3",
"remark-external-links": "^9",
"remark-html": "^14",
"remove": "^0.1.5",
"sass": "^1",
"sharp": "^0.29.1",
"styled-components": "^5.3",
"yarn": "^1.22",
"yup": "^0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1",
"@simbathesailor/use-what-changed": "^1.0",
"@testing-library/jest-dom": "^5.11",
"@testing-library/react": "^11",
"@types/jest": "^26",
"@types/natural": "^2",
"@types/node": "^14",
"@types/pino": "^6",
"@types/react": "^17",
"@types/react-bootstrap-typeahead": "^5",
"@types/react-dom": "^17",
"@types/react-simple-maps": "^1.0.7",
"@types/unist": "^2.0",
"@types/yup": "^0",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^7",
"eslint-config-prettier": "^8.3",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"fast-check": "^2.7",
"identity-obj-proxy": "^3.0",
"jest": "^26",
"prettier": "^2",
"prisma": "^3.4",
"type-coverage": "^2",
"typescript": "^4.4",
"why-is-node-running": "^2.2"
}
}