-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "retro-web",
"version": "1.0.0",
"description": "browser and visualizations for forest offsets retrospective",
"main": "index.js",
"scripts": {
"dev": "next -p 5001",
"build": "next build",
"start": "next start",
"format": "npm run format-js && npm run format-md",
"format-js": "prettier --write '*.js' '{data,components,pages,browser,article}/**/*.js'",
"format-md": "prettier --write README.md '{components,}/**/*.md' --parser mdx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/article-template.git"
},
"author": "carbonplan",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/article-template/issues"
},
"prettier": "@carbonplan/prettier",
"homepage": "https://github.com/carbonplan/article-template#readme",
"dependencies": {
"@carbonplan/components": "^12.6.5",
"@carbonplan/layouts": "^5.0.2",
"@carbonplan/theme": "^8.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^12.3.1",
"@theme-ui/color": "^0.15.7",
"@theme-ui/css": "^0.15.7",
"@theme-ui/match-media": "^0.15.7",
"@theme-ui/mdx": "^0.15.7",
"d3-array": "^2.11.0",
"d3-axis": "^2.0.0",
"d3-fetch": "^2.0.0",
"d3-format": "^2.0.0",
"d3-geo": "^2.0.1",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"d3-shape": "^2.0.0",
"mapbox-gl": "^1.13.1",
"next": "^14.2.23",
"polished": "^4.1.1",
"react": "^18.2.0",
"react-animate-height": "^2.0.23",
"react-dom": "^18.2.0",
"rehype-slug": "^4.0.1",
"theme-ui": "^0.15.7",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@carbonplan/prettier": "^1.2.0",
"prettier": "^2.2.1"
}
}