-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.83 KB
/
package.json
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
{
"name": "pypi-data-site",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap && npm run build-index",
"build-index": "mkdir -p public/data/ && ts-node scripts/build-index.ts public/data/fuse-index.json",
"postinstall": "wget https://raw.githubusercontent.com/pypi-data/data/main/stats/repositories_with_releases.json -O src/data/repositories_with_releases.json"
},
"dependencies": {
"@heroicons/react": "^2.1.4",
"@next/bundle-analyzer": "~14.2.4",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-table": "^8.17.3",
"byte-size": "^8.1.1",
"chroma-js": "^2.4.2",
"daisyui": "^4.12.7",
"date-fns": "^3.6.0",
"eslint": "^9.5.0",
"eslint-config-next": "~14.2.4",
"fuse.js": "^7.0.0",
"human-format": "^1.2.0",
"lodash.samplesize": "^4.2.0",
"next": "~14.2.4",
"next-sitemap": "^4.2.3",
"prql-js": "==0.12.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.5.0",
"react-timestamp": "^6.0.0",
"recharts": "^2.12.7",
"sql-formatter": "^15.3.2",
"swr": "^2.2.5",
"ts-node": "^10.9.2",
"typescript": "<5.6.0",
"use-debounce": "^10.0.1"
},
"devDependencies": {
"@types/byte-size": "^8.1.2",
"@types/chroma-js": "^2.4.4",
"@types/lodash.samplesize": "^4.2.9",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.4.4"
},
"browserslist": [
">0.3%",
"not dead",
"not op_mini all"
]
}