-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "movie-rater",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"db:indexes": "node scripts/createIndexes.js",
"db:merge": "tsx scripts/runMerge.ts",
"db:rename-movie-bases": "node scripts/renameYahooMoviesCollection.js",
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"test:integration:mongo": "INTEGRATION_MONGO_URL=mongodb://localhost:27018/movierater_incremental_integration vitest run src/test/incrementalMerge.integration.test.ts",
"test:watch": "vitest"
},
"private": true,
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@mui/material-nextjs": "^6.4.0",
"cheerio": "^1.0.0-rc.2",
"hls.js": "0.12.4",
"moment": "^2.16.0",
"mongodb": "^6",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/cheerio": "^0.22.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tsx": "^4.22.4",
"typescript": "^5.8.0",
"vitest": "^2.0.0"
}
}