-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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
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
{
"name": "ctbk.dev",
"homepage": "https://ctbk.dev",
"version": "0.1.1",
"license": "MIT",
"author": "Ryan Williams <ryan@runsascoded.com",
"type": "module",
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mdx-js/loader": "^2.3.0",
"@mui/material": "^6.1.9",
"@next/mdx": "^13.5.6",
"@rdub/base": "0.7.1",
"@rdub/icons": "0.1.0",
"@rdub/next-base": "0.4.0",
"@rdub/next-leaflet": "0.2.0",
"@rdub/next-markdown": "0.4.0",
"@rdub/next-params": "0.3.0",
"@rdub/next-plotly": "0.3.0",
"assert": "^2.1.0",
"bootstrap": "^4.6.2",
"buffer": "^6.0.3",
"d3-color": "^3.1.0",
"danfojs": "^1.1.2",
"jquery": "^3.7.1",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "^14.1.0",
"node-fetch": "^2.7.0",
"plotly.js": "^2.29.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-markdown": "^7.1.2"
},
"devDependencies": {
"@rdub/eslint-config": "0.0.2",
"@types/chroma-js": "^2.4.3",
"@types/jquery": "^3.5.29",
"@types/leaflet": "^1.9.8",
"@types/lodash": "^4.14.202",
"@types/node-fetch": "^2.6.11",
"@types/parquetjs": "^0.10.6",
"@types/plotly.js": "^2.29.0",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@types/react-plotly.js": "^2.6.3",
"@types/use-persisted-state": "^0.3.4",
"commander": "^2.20.3",
"eslint": "^9",
"http-server": "^14.1.1",
"puppeteer": "^23.6.0",
"source-map-loader": "^3.0.2",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.90.1",
"webpack-cli": "^4.10.0"
},
"browser": {
"buffer": false
},
"scripts": {
"clean": "rm -rf .next out",
"dev": "next dev",
"build": "next build",
"deploy-s3": "aws s3 sync out/ s3://ctbkdev/",
"docker": "scripts/docker.py",
"docker-build": "scripts/docker.py next build",
"db": "scripts/docker.py next build",
"docker-build-export": "scripts/docker.py -- bash -c 'next build && next export'",
"dbx": "scripts/docker.py -- bash -c 'next build && next export'",
"docker-dev": "scripts/docker.py -p 3000 next dev",
"dd": "scripts/docker.py -p 3000 next dev",
"docker-export": "scripts/docker.py next export",
"dx": "scripts/docker.py next export",
"export": "next build && next export",
"lint": "eslint .",
"serve": "http-server out",
"start": "next start",
"screenshots": "node screenshots.js",
"tc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/neighbor-ryan/ctbk.dev"
},
"bugs": {
"url": "https://github.com/neighbor-ryan/ctbk.dev/issues"
}
}