-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.3 KB
/
package.json
File metadata and controls
123 lines (123 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
{
"name": "nebula-web",
"version": "0.1.0",
"private": true,
"scripts": {
"bootstrap": "npm run prisma:generate && npx prisma migrate dev && npm run dev",
"dev": "next dev",
"prisma:generate": "prisma generate --schema prisma/platform.prisma && prisma generate --schema prisma/schema.prisma",
"prisma:migrate:deploy": "prisma migrate deploy --schema prisma/schema.prisma",
"build": "npm run prisma:generate && next build && npm run prisma:migrate:deploy && prisma db seed",
"start": "next start",
"lint:check": "eslint .",
"lint": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"analyze": "cross-env ANALYZE=true npm run build",
"dev:gitpod": "NEXTAUTH_URL=$(gp url 3000)/ npm run dev",
"cypress:open": "NODE_ENV=test start-server-and-test dev http://localhost:3000 \"cypress open --browser chrome --e2e\"",
"cypress:run": "NODE_ENV=test start-server-and-test start http://127.0.0.1:3000 \"cypress run --browser chrome --config video=false --e2e\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"prisma": {
"seed": "ts-node --transpile-only --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.0.6",
"@mui/icons-material": "^5.3.1",
"@mui/lab": "^5.0.0-alpha.67",
"@mui/material": "^5.4.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/bundle-analyzer": "^13.1.6",
"@next/third-parties": "^15.0.2",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "2.0.2",
"@radix-ui/react-hover-card": "1.0.4",
"@radix-ui/react-select": "1.2.1",
"@radix-ui/react-switch": "1.0.1",
"@react-pdf/renderer": "^3.0.3",
"@sentry/nextjs": "^7.77.0",
"@tanstack/react-query": "^4.16.1",
"@tanstack/react-query-devtools": "^4.24.10",
"@trpc/client": "^10.36.0",
"@trpc/next": "^10.36.0",
"@trpc/react-query": "^10.36.0",
"@trpc/server": "^10.36.0",
"@vercel/analytics": "^0.1.11",
"async-mutex": "^0.4.0",
"axios": "^1.6.0",
"eslint": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"framer-motion": "^6.2.3",
"fuse.js": "^6.6.2",
"intro.js": "^6.0.0",
"intro.js-react": "^0.7.1",
"next": "^13.5.4",
"nodemailer": "^6.9.9",
"next-auth": "^4.24.5",
"nprogress": "^0.2.0",
"pdfjs-dist": "^3.3.122",
"prettier-eslint": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.4.1",
"react-loading-skeleton": "^3.3.1",
"react-toastify": "^9.1.1",
"superjson": "^1.11.0",
"tss-react": "^3.3.6",
"uuid": "^8.3.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@jest/globals": "^29.6.1",
"@prisma/client": "^5.9.1",
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.2",
"@storybook/nextjs": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^17.0.14",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cypress": "^13.0.0",
"dotenv": "^16.0.3",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.6.1",
"node-fetch": "^3.3.2",
"postcss": "^8.4.31",
"prettier": "^2.3.2",
"prettier-plugin-tailwindcss": "^0.2.2",
"prisma": "^5.9.1",
"react-styleguidist": "^13.0.0",
"start-server-and-test": "^2.0.0",
"storybook": "^7.5.2",
"tailwindcss": "^3.0.18",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"overrides": {
"@react-pdf/renderer": {
"react": "^18.0.0"
}
}
}