-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.72 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
{
"private": true,
"scripts": {
"dev": "npm-run-all init dev:init --parallel dev:server dev:client",
"build": "tsc && next build",
"init": "convex init",
"dev:server": "convex dev",
"dev:client": "next dev",
"dev:init": "convex dev --once",
"start": "next start"
},
"dependencies": {
"@auth0/auth0-react": "^2.0.1",
"@clerk/clerk-react": "^4.23.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.1",
"@types/react-transition-group": "^4.4.5",
"canvas-confetti": "^1.6.0",
"convex": "^1.10.0",
"convex-ents": "^0.4.2",
"convex-helpers": "^0.1.35",
"itertools": "^1.7.1",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-transition-group": "^4.4.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.1.1",
"@types/canvas-confetti": "^1.6.0",
"@types/node": "^20.3.3",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.1.7",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
}
}