-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.96 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
{
"name": "clearlane-initiative",
"type": "module",
"version": "1.0.0",
"description": "Data storytelling website for NYC bus enforcement analysis - CUNY student transforms commute into productive study time",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write .",
"typecheck": "astro check"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/react": "^3.6.0",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "^7.7.0",
"@types/d3": "^7.4.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^4.11.5",
"chart.js": "^4.4.3",
"chartjs-adapter-date-fns": "^3.0.0",
"d3": "^7.9.0",
"d3-geo": "^3.1.1",
"d3-scale-chromatic": "^3.1.0",
"date-fns": "^3.6.0",
"leaflet": "^1.9.4",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/leaflet": "^1.9.12",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.2",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0"
},
"keywords": [
"nyc",
"bus",
"enforcement",
"cuny",
"student",
"transportation",
"data-visualization",
"policy",
"astro",
"tailwind"
],
"author": "Abdul Basir - ClearLane Initiative",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clearlane-initiative/clearlane-website"
},
"engines": {
"node": ">=18.0.0"
}
}