-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.92 KB
/
package.json
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
{
"name": "charades.ai",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 next dev && yarn ts:watch",
"build": "next build",
"start": "next start",
"rr:build": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 next build",
"rr:start": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 next start",
"lint": "next lint",
"test": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests",
"test:watch": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 yarn node --experimental-vm-modules $(yarn bin jest) --watch",
"test:coverage": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 yarn node --experimental-vm-modules $(yarn bin jest) --coverage",
"analyze": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 cross-env ANALYZE=true next build",
"generate": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 npx tsx scripts/generateCharades.ts",
"backfill-dynamic-previews": "railway run --service bf8fe035-6790-4d5a-845a-1f5da75383a0 npx tsx scripts/backfillDynamicPreviews.ts",
"cleanup": "./scripts/cleanup.sh",
"ts": "tsc --noEmit --incremental",
"ts:watch": "yarn ts --watch",
"act:m1:generate": "act --secret-file act.secrets --container-architecture linux/amd64 -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:js-latest -W .github/workflows/cron_generate.yml",
"act:m1:test": "act --secret-file act.secrets --container-architecture linux/amd64 -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:js-latest -W .github/workflows/cron_next_tests.yml"
},
"dependencies": {
"@xenova/transformers": "^2.16.0",
"compute-cosine-similarity": "^1.1.0",
"daisyui": "^3.5.1",
"dotenv": "^16.3.1",
"mongodb": "^4.11.0",
"next": "14.2.21",
"openai": "^4.28.4",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"realm": "^11.10.2",
"sharp": "0.32.6",
"ts-command-line-args": "^2.5.1",
"tsx": "^4.7.0",
"typescript": "^5.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.388.0",
"@aws-sdk/client-sts": "^3.388.0",
"@jest/globals": "^29.6.4",
"@next/bundle-analyzer": "^13.0.0",
"@swc/core": "^1.3.11",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.13",
"@types/node": "^20.5.7",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.6.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.1.6",
"ts-jest": "^29.1.1"
}
}