-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.3 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.3 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "deckforge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn app:dev\" \"yarn api:dev\" --names \"app,api\"",
"prod": "concurrently \"yarn app:prod\" \"yarn api:prod\" --names \"app,api\"",
"app:dev": "vite",
"app:prod": "vite build && vite preview",
"api:dev": "cross-env NODE_ENV=development tsx watch src/api/start",
"api:prod": "cross-env NODE_ENV=production tsx src/api/start",
"build": "yarn typecheck && vite build",
"typecheck": "yarn tsc:api && yarn tsc:app",
"tsc:api": "tsc --project src/api",
"tsc:app": "tsc --project src/app",
"tsc:trace:api": "yarn tsc:api --generateTrace trace/api --incremental false",
"tsc:trace:app": "yarn tsc:app --generateTrace trace/app --incremental false",
"tsc:analyze:api": "npx @typescript/analyze-trace trace/api",
"tsc:analyze:app": "npx @typescript/analyze-trace trace/app",
"postinstall": "prisma generate",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"test:unit": "jest",
"test:e2e": "cross-var start-server-and-test prod $CYPRESS_BASE_URL 'cypress run --browser chrome'",
"db:push": "dotenv-flow prisma db push",
"db:seed": "dotenv-flow tsx prisma/seed.ts",
"db:reset": "dotenv-flow tsx prisma/reset.ts",
"db:deploy": "dotenv-flow pscale deploy-request create deckforge"
},
"prisma": {
"seed": "yarn db:seed"
},
"dependencies": {
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@fontsource/roboto": "4.5.8",
"@hookform/resolvers": "2.9.10",
"@monaco-editor/react": "4.4.6",
"@mui/icons-material": "5.10.14",
"@mui/lab": "5.0.0-alpha.111",
"@mui/material": "5.10.14",
"@prisma/client": "4.6.1",
"@reduxjs/toolkit": "1.9.1",
"@tanstack/react-query": "4.18.0",
"@trpc/client": "10.1.0",
"@trpc/react-query": "10.1.0",
"@trpc/server": "10.1.0",
"@vercel/analytics": "0.1.5",
"bcrypt": "5.1.0",
"classnames": "2.3.2",
"cors": "2.8.5",
"excalibur": "0.27.0",
"express": "4.18.2",
"history": "4.10.1",
"immer": "9.0.16",
"jsonwebtoken": "8.5.1",
"jwks-rsa": "3.0.0",
"lodash": "4.17.21",
"monaco-editor": "0.34.1",
"morgan": "1.10.0",
"neverthrow": "6.0.0",
"path-to-regexp": "6.2.1",
"proxy-deep": "3.1.1",
"quickjs-emscripten": "0.21.1",
"rand-seed": "1.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.40.0",
"react-inspector": "6.0.1",
"react-mosaic-component": "5.3.0",
"react-redux": "8.0.5",
"react-router": "5.3.3",
"react-router-dom": "5.3.3",
"react-typesafe-routes": "0.0.8",
"redux": "4.2.0",
"redux-undo": "1.0.1",
"slugify": "1.6.5",
"superjson": "1.11.0",
"use-debounce": "8.0.4",
"uuid": "9.0.0",
"web-vitals": "3.1.0",
"zod": "3.19.1",
"zustand": "4.1.4"
},
"devDependencies": {
"@swc-node/jest": "1.6.1",
"@swc/core": "1.3.35",
"@swc/helpers": "0.4.14",
"@testing-library/cypress": "8.0.7",
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/dotenv-flow": "3.2.0",
"@types/express": "4.17.14",
"@types/jest": "29.2.3",
"@types/lodash": "4.14.191",
"@types/morgan": "1.9.3",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"@vitejs/plugin-react": "2.2.0",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"cross-var": "1.1.0",
"cypress": "11.2.0",
"cypress-dotenv-flow": "1.2.2",
"dotenv-flow": "3.2.0",
"dotenv-flow-cli": "1.0.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mui-path-imports": "0.0.3",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "29.3.1",
"prettier": "2.8.4",
"prettier-plugin-prisma": "4.4.0",
"prisma": "4.6.1",
"start-server-and-test": "1.14.0",
"tsx": "3.12.1",
"typescript": "4.9.3",
"vite": "3.2.3",
"vite-plugin-checker": "0.5.1"
}
}