-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "repo-time-machine",
"version": "0.1.0",
"private": true,
"description": "Turn the Git history of a public GitHub repository into a visual, playable timeline.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && playwright test",
"test:e2e:only": "playwright test",
"test:live": "node scripts/live-smoke.mjs",
"fixtures": "node scripts/record-fixtures.mjs",
"screenshots": "node scripts/screenshots.mjs",
"verify": "npm run typecheck && npm run lint && npm run test && npm run test:e2e",
"token-canary": "node scripts/token-canary.mjs"
},
"dependencies": {
"next": "^16.3.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"server-only": "^0.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@playwright/test": "^1.62.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^22.20.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.0",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.2",
"jsdom": "^26.1.0",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}