forked from becomevocal/translations-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.76 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.76 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": "multi-lang-translations-app",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npm run build:auth-client && npm run build:graphql-client && npm run build:rest-client && npm run db:migrate && next build",
"start": "next start",
"lint": "next lint",
"build:auth-client": "npm run build --prefix lib/auth-client",
"build:graphql-client": "npm run build --prefix lib/graphql-client",
"build:rest-client": "npm run build --prefix lib/rest-client",
"postinstall": "node ./postinstall.mjs",
"db:generate": "NODE_OPTIONS='-r ts-node/register/transpile-only' drizzle-kit generate",
"db:migrate": "NODE_OPTIONS='-r ts-node/register/transpile-only' drizzle-kit migrate",
"db:push": "NODE_OPTIONS='-r ts-node/register/transpile-only' drizzle-kit push",
"db:studio": "NODE_OPTIONS='-r ts-node/register/transpile-only' drizzle-kit studio",
"generate:schema": "tsx scripts/generate-schema.ts"
},
"dependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@bigcommerce/big-design": "^1.6.2",
"@bigcommerce/big-design-patterns": "^2.0.4",
"@bigcommerce/translations-auth-client": "file:lib/auth-client",
"@bigcommerce/translations-graphql-client": "file:lib/graphql-client",
"@bigcommerce/translations-rest-client": "file:lib/rest-client",
"@edge-csrf/nextjs": "^2.5.2",
"@libsql/client": "^0.14.0",
"@sentry/nextjs": "^8.47.0",
"@tinymce/tinymce-react": "^5.1.1",
"@types/papaparse": "^5.3.15",
"@vercel/analytics": "^1.4.1",
"@vercel/blob": "^0.27.0",
"@vercel/postgres": "^0.9.0",
"better-sqlite3": "^11.1.2",
"cookie": "^1.0.2",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"gql.tada": "^1.8.10",
"jose": "^5.6.3",
"mysql2": "^3.12.0",
"next": "15.5.10",
"next-intl": "^3.26.3",
"papaparse": "^5.5.1",
"pg": "^8.13.1",
"postgres": "^3.4.5",
"react": "18.3.1",
"react-datepicker": "^7.6.0",
"react-dom": "18.3.1",
"react-loading-skeleton": "^3.4.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"styled-components": "^5.3.11",
"swr": "^2.2.5",
"uuid": "^10.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cookie": "^0.6.0",
"@types/debug": "^4.1.12",
"@types/node": "^20",
"@types/react": "19.0.1",
"@types/react-datepicker": "^7.0.0",
"@types/react-dom": "19.0.2",
"@types/styled-components": "^5.1.34",
"autoprefixer": "^10.0.1",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "15.5.10",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5"
}
}