-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "supercut",
"version": "0.1.0",
"private": true,
"description": "Type a market, get a playbook of what's working in its paid social video ads. AI watches each ad, code counts the patterns, every claim comes with receipts.",
"scripts": {
"scan": "bun run src/scan.ts",
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint src app test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "bun test"
},
"dependencies": {
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.14",
"eslint": "^10.7.0",
"eslint-config-next": "^16.2.10",
"prettier": "^3.9.5",
"tailwindcss": "^4.3.2",
"typescript": "^5.9",
"typescript-eslint": "^8.63.0"
}
}