-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.2 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
{
"name": "blog",
"version": "1.0.0",
"description": "short updates on what we do at CarbonPlan",
"main": "index.js",
"scripts": {
"dev": "npm run build-components && NODE_ENV=development next -p 4001",
"build": "npm run build-components && next build",
"build-components": "node build-components.js && prettier --write components/mdx/page-components.js",
"build-cards": "node build-cards.js",
"lint": "eslint . --max-warnings 5",
"start": "next start",
"format": "npm run format-js && npm run format-md",
"format-js": "prettier --write '*.js' '{components,lib,pages,posts}/**/*.js'",
"format-md": "prettier --write README.md 'posts/**/*.md' --parser mdx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/blog.git"
},
"author": "carbonplan",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/blog/issues"
},
"homepage": "https://github.com/carbonplan/blog#readme",
"dependencies": {
"@carbonplan/charts": "^3.1.1",
"@carbonplan/colormaps": "^4.0.0",
"@carbonplan/components": "^12.6.3",
"@carbonplan/icons": "^2.0.0",
"@carbonplan/layouts": "^4.0.0",
"@carbonplan/maps": "^3.4.0",
"@carbonplan/prism": "^2.0.0",
"@carbonplan/theme": "^8.1.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/loader": "^2.1.5",
"@mdx-js/react": "^2.1.5",
"@next/mdx": "^12.3.1",
"@react-spring/web": "^9.6.0",
"@theme-ui/color": "^0.15.3",
"@theme-ui/mdx": "^0.15.3",
"d3-array": "^3.1.1",
"d3-fetch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-geo": "^3.0.1",
"gray-matter": "^4.0.3",
"ndarray": "^1.0.19",
"next": "^12.0.7",
"next-mdx-remote": "^4.1.0",
"react": "^18.2.0",
"react-animate-height": "^2.0.23",
"react-dom": "^18.2.0",
"rehype-slug": "^4.0.1",
"remark-mdx-code-meta": "^2.0.0",
"theme-ui": "^0.15.3",
"topojson-client": "^3.1.0",
"zarr-js": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"glob": "^7.1.7",
"prettier": "2.3.2",
"puppeteer": "^10.4.0"
}
}