-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.02 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.02 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
{
"name": "nextjs-clerk-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"current"
],
"cpu": [
"x64",
"arm64"
]
}
},
"scripts": {
"test": "nyc mocha",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db": "node --loader ts-node/esm src/app/api/scripts/db.ts",
"db:clean": "node --loader ts-node/esm src/app/api/scripts/clear-db.ts",
"cy": "npx cypress open"
},
"dependencies": {
"@clerk/nextjs": "^6.9.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@libsql/client": "^0.14.0",
"@mui/icons-material": "^6.2.0",
"@mui/joy": "^5.0.0-beta.48",
"@types/node": "^22.9.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"axios": "^1.7.9",
"better-sqlite3": "^11.6.0",
"next": "15.0.3",
"next-swagger-doc": "^0.4.1",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"swagger-ui-react": "^5.18.2",
"tailwindcss": "^3.4.15",
"vercel": "^32.3.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.13.9",
"@cypress/instrument-cra": "^1.4.0",
"@cypress/webpack-preprocessor": "^6.0.2",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "20.17.9",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sqlite3": "^3.1.11",
"@types/swagger-ui-react": "^4.18.3",
"babel-plugin-istanbul": "^7.0.0",
"cypress": "^13.16.1",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"istanbul-lib-coverage": "^3.2.2",
"nyc": "^17.1.0",
"postcss": "^8",
"swc-plugin-coverage-instrument": "^0.0.25",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite-plugin-istanbul": "^6.0.2"
}
}