-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.13 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
{
"name": "STAPLE",
"version": "1.0.0",
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"prepare": "husky install"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@aws-sdk/client-ses": "3.637.0",
"@blitzjs/auth": "2.0.0-beta.30",
"@blitzjs/next": "2.0.0-beta.30",
"@blitzjs/rpc": "2.0.0-beta.30",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.2",
"@ginkgo-bioworks/react-json-schema-form-builder": "3.0.0",
"@headlessui/react": "1.7.15",
"@heroicons/react": "2.0.18",
"@prisma/client": "4.16.2",
"@reach/auto-id": "0.18.0",
"@rjsf/bootstrap-4": "5.13.4",
"@rjsf/core": "5.13.4",
"@rjsf/material-ui": "5.13.4",
"@rjsf/mui": "5.13.4",
"@rjsf/utils": "5.13.4",
"@rjsf/validator-ajv8": "5.13.4",
"@tanstack/react-table": "8.20.5",
"autoprefixer": "10.4.15",
"blitz": "2.0.0-beta.30",
"bootstrap": "5.3.3",
"classnames": "2.3.2",
"clsx": "2.1.1",
"dompurify": "3.1.0",
"dotenv": "16.4.7",
"file-saver": "2.0.5",
"final-form": "4.20.9",
"focus-trap-react": "10.2.3",
"framer-motion": "11.1.7",
"fs": "0.0.1-security",
"handlebars": "4.7.8",
"jquery": "3.7.1",
"json-edit-react": "1.13.2",
"jsoneditor": "10.1.0",
"jsoneditor-react": "3.1.2",
"jszip": "3.10.1",
"moment": "2.30.1",
"next": "13.4.5",
"node-cron": "3.0.3",
"node-fetch": "3.3.2",
"nodemailer": "6.9.14",
"passport-orcid": "0.0.4",
"postcss": "8.4.27",
"react": "18.2.0",
"react-circular-progressbar": "2.1.0",
"react-dom": "18.2.0",
"react-final-form": "6.5.9",
"react-hot-toast": "2.4.1",
"react-json-editor-ajrm": "2.5.14",
"react-json-view": "1.21.3",
"react-overlays": "5.2.1",
"react-tooltip": "5.26.0",
"reactflow": "11.9.2",
"resend": "4.0.0",
"secure-password": "4.0.0",
"tailwindcss": "3.3.3",
"xlsx": "0.18.5",
"zod": "3.20.2"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.8",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "18.11.9",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.25",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@vitejs/plugin-react": "2.2.0",
"daisyui": "4.6.1",
"eslint": "8.27.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.2",
"jsdom": "20.0.3",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-prisma": "4.4.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.7",
"prisma": "4.16.2",
"typescript": "^4.8.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.3"
},
"private": true
}