-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "soku-ai-landing-pages",
"version": "1.0.0",
"description": "Soku AI Landing Pages with A/B Testing",
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"check-all": "yarn typecheck && yarn lint && yarn format:check",
"pre-commit-check": "yarn typecheck && yarn lint",
"mock-data": "npx tsx scripts/generate-mock-data.ts",
"prepare": "husky"
},
"dependencies": {
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.0",
"framer-motion": "^10.16.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.294.0",
"next": "^14.0.0",
"postcss": "^8.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^30.0.0",
"@types/prettier": "^3.0.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"lint-staged": "^16.1.4",
"oxlint": "^1.9.0",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn lint"
],
"*.{ts,tsx}": [
"bash -c 'yarn typecheck'"
]
}
}