-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.97 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
{
"name": "ocx-loader",
"version": "1.0.0",
"private": true,
"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",
"worker": "tsx src/app/worker.ts"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@airbrake/node": "2.1.8",
"@blitzjs/auth": "2.1.3",
"@blitzjs/next": "2.1.3",
"@blitzjs/rpc": "2.1.3",
"@hookform/error-message": "2.0.1",
"@hookform/resolvers": "3.9.0",
"@picocss/pico": "2.0.6",
"@prisma/client": "5.20.0",
"@types/ioredis": "5.0.0",
"@types/json-schema": "7.0.15",
"@types/jszip": "3.4.1",
"@types/node-fetch": "2.6.11",
"@types/pretty-bytes": "5.2.0",
"@types/yauzl": "2.10.3",
"@uiw/react-json-view": "2.0.0-alpha.27",
"ajv-formats": "3.0.1",
"better-sse": "0.13.0",
"blitz": "2.1.3",
"cheerio": "1.0.0",
"extract-zip": "2.0.1",
"fetch-cookie": "3.0.1",
"formik": "2.4.6",
"googleapis": "144.0.0",
"ioredis": "5.4.1",
"json-edit-react": "1.17.0",
"jszip": "3.10.1",
"next": "14.2.14",
"nock": "13.5.5",
"pg-boss": "10.1.4",
"pretty-bytes": "6.1.1",
"prisma": "5.20.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
"react-icons": "5.3.0",
"react-xml-viewer": "2.0.1",
"secure-password": "4.0.0",
"slugify": "1.6.6",
"xml2js": "0.6.2",
"xmlbuilder2": "3.1.1",
"xmldom-ts": "0.3.1",
"xpath-ts": "1.3.13",
"yauzl": "3.1.3",
"zod": "3.23.8",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@babel/preset-env": "7.25.4",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@next/env": "14.2.14",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@types/cheerio": "0.22.35",
"@types/lodash": "4.17.9",
"@types/node": "22.7.4",
"@types/preview-email": "3.0.4",
"@types/react": "18.3.10",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@vitejs/plugin-react": "4.3.2",
"ajv": "8.17.1",
"babel-jest": "29.7.0",
"dotenv-cli": "7.4.2",
"eslint": "9.11.1",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"next-test-api-route-handler": "4.0.14",
"nock-record": "0.3.9",
"prettier": "^3.3.3",
"prettier-plugin-prisma": "5.0.0",
"pretty-quick": "4.0.0",
"preview-email": "3.1.0",
"tsx": "4.19.1",
"typescript": "^5.6.2",
"vite": "5.4.8",
"vite-tsconfig-paths": "5.1.2",
"vitest": "2.1.1"
},
"resolutions": {
"superjson": "^1.12.0"
}
}