-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "icrawl",
"version": "0.0.0",
"description": "I write code.",
"private": true,
"scripts": {
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"build": "pnpm run build:prod",
"build:check": "pnpm exec tsc --noEmit",
"build:local": "pnpm run build:prod",
"build:prod": "pnpm run build:next",
"build:next": "pnpm exec next build",
"preview": "pnpm exec next start",
"dev": "pnpm exec next dev --turbo",
"lint": "pnpm exec prettier --check . && cross-env TIMING=1 pnpm exec eslint --format=pretty src && pnpm run build:check",
"format": "pnpm exec prettier --write . && cross-env TIMING=1 pnpm exec eslint --fix --format=pretty src && pnpm run build:check",
"fmt": "pnpm run format",
"prepare": "pnpm exec is-ci || pnpm exec husky",
"update": "pnpm update --interactive",
"update:latest": "pnpm update --interactive --latest"
},
"type": "module",
"files": [
".next",
"public"
],
"directories": {
"lib": "src"
},
"contributors": [
"Crawl <icrawltogo@gmail.com>"
],
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/iCrawl/icrawl.git"
},
"bugs": {
"url": "https://github.com/iCrawl/icrawl/issues"
},
"homepage": "https://crawl.gg",
"dependencies": {
"@icons-pack/react-simple-icons": "^10.2.0",
"immer": "^10.1.1",
"jotai": "^2.10.4",
"jotai-immer": "^0.4.1",
"lucide-react": "^0.469.0",
"next": "15.1.1-canary.16",
"next-themes": "^0.4.4",
"nuqs": "^2.2.3",
"overlayscrollbars": "^2.10.1",
"overlayscrollbars-react": "^0.5.6",
"react": "^19.0.0",
"react-aria": "^3.36.0",
"react-aria-components": "^1.5.0",
"react-dom": "^19.0.0",
"set-cookie-parser": "^2.7.1",
"sharp": "^0.33.5",
"tailwind-variants": "^0.3.0",
"use-lanyard": "^1.5.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-angular": "^19.6.0",
"@next/bundle-analyzer": "^15.1.2",
"@playwright/test": "^1.49.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/lodash.merge": "^4.6.9",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/set-cookie-parser": "^2.4.10",
"@unocss/eslint-plugin": "^0.65.2",
"@unocss/postcss": "^0.65.2",
"@unocss/reset": "^0.65.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"babel-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-neon": "^0.2.4",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^15.2.11",
"lodash.merge": "^4.6.2",
"playwright": "^1.49.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"unocss": "^0.65.2",
"vercel": "^39.2.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22"
}
}