-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
{
"name": "bdash-server",
"version": "1.0.0",
"scripts": {
"dev": "NODE_OPTIONS='--openssl-legacy-provider' blitz dev",
"build": "prisma generate --schema db/schema.prisma && NODE_OPTIONS='--openssl-legacy-provider' blitz build",
"start": "NODE_OPTIONS='--openssl-legacy-provider' blitz start",
"start:production": "NODE_OPTIONS='--openssl-legacy-provider' blitz start --port $PORT",
"db:push": "blitz prisma db push",
"db:migrate": "blitz prisma migrate dev --preview-feature",
"db:migrate:production": "blitz prisma migrate deploy --preview-feature",
"studio": "blitz prisma studio",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"test": "jest",
"test:watch": "jest --watch",
"task": "tsx",
"blitz": "blitz"
},
"engines": {
"node": "22"
},
"prisma": {
"schema": "db/schema.prisma"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"dependencies": {
"@chakra-ui/icons": "2.0.4",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@modelcontextprotocol/sdk": "1.12.1",
"@prisma/client": "5.16.0",
"blitz": "0.45.4",
"date-fns": "2.28.0",
"final-form": "4.20.7",
"framer-motion": "3.10.6",
"highlight.js": "11.6.0",
"papaparse": "5.3.2",
"passport-google-oauth20": "2.0.0",
"plotly.js-basic-dist-min": "2.10.0",
"prisma": "5.16.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-error-boundary": "3.1.4",
"react-final-form": "6.5.9",
"zod": "3.17.3",
"tsx": "4.20.3"
},
"devDependencies": {
"@types/papaparse": "5.3.2",
"@types/plotly.js": "1.54.20",
"@types/preview-email": "2.0.1",
"@types/react": "18.0.1",
"eslint": "7.32.0",
"prettier": "2.7.1",
"prettier-plugin-prisma": "5.0.0",
"pretty-quick": "3.1.3",
"preview-email": "3.0.5",
"typescript": "5.5.2"
},
"private": true,
"volta": {
"node": "22.16.0",
"yarn": "1.22.22"
}
}