-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "cdr-database",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next -p 5000",
"build": "next build",
"start": "next start -p 5000",
"format": "npm run format-js && npm run format-md",
"format-js": "prettier --write glossary.js theme.js '{methods,components,lib,pages}/**/*.js'",
"format-md": "prettier --write README.md 'methods/**/*.md' --parser mdx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbonplan/cdr-database.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/carbonplan/cdr-database/issues"
},
"homepage": "https://github.com/carbonplan/cdr-database#readme",
"dependencies": {
"@babel/core": "^7.15.0",
"@carbonplan/charts": "^2.0.0",
"@carbonplan/components": "^11.7.2",
"@carbonplan/icons": "^1.0.0",
"@carbonplan/theme": "^7.0.0",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^11.0.1",
"d3-brush": "^3.0.0",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"next": "^12.0.7",
"react": "^17.0.2",
"react-animate-height": "^2.0.23",
"react-dom": "^17.0.2",
"react-use": "^17.2.4",
"rehype-react": "^6.2.1",
"rehype-slug": "^4.0.1",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"safe-compare": "^1.1.4",
"swr": "^0.5.6",
"theme-ui": "^0.12.1",
"unified": "^9.2.0"
},
"devDependencies": {
"prettier": "2.3.2"
}
}