-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.43 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
{
"name": "app-template",
"version": "0.0.1",
"description": "App Template",
"license": "AGPL-3.0-or-later",
"author": "Nathan Stitt",
"main": "index.js",
"scripts": {
"dev": "next dev --turbopack",
"prepare": "panda codegen",
"build": "next build",
"build:docker:production": "docker build --file Dockerfile.prod --platform=linux/amd64 -t $DOCKER_TAG .",
"build:docker:ci": "docker build --file Dockerfile.dev -t $DOCKER_TAG .",
"start": "next start",
"lint": "next lint && prettier --check .",
"lint:fix": "next lint --fix && prettier --write .",
"typecheck": "tsc --noEmit",
"pre:push": "run-s lint:fix checks",
"checks": "run-p -c typecheck lint",
"test:e2e": "playwright test",
"test:unit": "vitest",
"test": "run-p -c test:*",
"pre:commit": "npx lint-staged"
},
"dependencies": {
"@clerk/nextjs": "^6.31.0",
"@mantine/core": "^8.2",
"@mantine/form": "^8.2",
"@mantine/modals": "^8.2",
"clsx": "*",
"next": "15.4.6",
"next-swagger-doc": "^0.4",
"react": "19.1.1",
"react-dom": "19.1.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@next/eslint-plugin-next": "^15.4.6",
"@pandacss/dev": "^1.0.1",
"@playwright/test": "^1.54",
"@testing-library/react": "^16.3",
"@types/react": "19.1.10",
"@vanilla-extract/vite-plugin": "^5.1.1",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^3.2.4",
"dotenv": "*",
"eslint": "^9.33.0",
"eslint-config-next": "*",
"eslint-config-prettier": "*",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"happy-dom": "*",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"npm-run-all": "*",
"prettier": "*",
"typescript-eslint": "^8.39.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "*"
},
"overrides": {
"react-remove-scroll": {
"react": "^19.0.0"
},
"use-callback-ref": {
"react": "^19.0.0"
},
"react-textarea-autosize": {
"react": "^19.0.0"
},
"react-number-format": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"swr": {
"react": "^19.0.0"
}
}
}