-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.7 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
{
"name": "modern-coding-quickstart",
"version": "0.0.1",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"scripts": {
"typecheck": "nx run-many -t typecheck",
"lint": "nx run-many -t lint",
"test": "nx run-many -t test",
"build": "nx run-many -t build",
"verify": "nx run-many -t typecheck lint test build",
"dev": "nx dev plan-editor",
"format": "nx format:write",
"graph": "nx graph",
"drizzle:generate": "drizzle-kit generate",
"drizzle:push": "drizzle-kit push",
"module:begin": "node scripts/module.mjs begin",
"module:compare": "node scripts/module.mjs compare",
"module:reset": "node scripts/module.mjs reset",
"module:status": "node scripts/module.mjs status",
"rebuild-tags": "node scripts/rebuild-tags.mjs",
"prepare": "husky"
},
"dependencies": {
"@electric-sql/pglite": "^0.5.3",
"@tanstack/react-query": "^5.62.0",
"@trpc/client": "^11.18.0",
"@trpc/next": "^11.18.0",
"@trpc/react-query": "^11.18.0",
"@trpc/server": "^11.18.0",
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.45.2",
"inversify": "^6.2.2",
"jose": "^5.9.6",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^2.1.1",
"@next/eslint-plugin-next": "^15.5.18",
"@nx/eslint": "23.0.0",
"@nx/eslint-plugin": "23.0.0",
"@nx/jest": "23.0.0",
"@nx/js": "23.0.0",
"@nx/next": "23.0.0",
"@nx/playwright": "23.0.0",
"@nx/react": "23.0.0",
"@playwright/test": "^1.49.0",
"@swc-node/register": "1.11.1",
"@swc/cli": "~0.8.0",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.18",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"babel-jest": "~30.3.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.0",
"eslint": "^9.18.0",
"eslint-config-next": "^15.5.18",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "^9.1.7",
"jest": "^30.0.0",
"jest-environment-jsdom": "~30.3.0",
"jest-environment-node": "^30.0.0",
"jest-util": "~30.3.0",
"nx": "23.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.2.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.20.0"
}
}