-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 806 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 806 Bytes
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
{
"name": "ghviz",
"version": "0.1.0",
"description": "Visualize and discover interesting GitHub repos",
"author": "Srinath Sankar <srinath@iambot.net>",
"license": "MIT",
"scripts": {
"start": "esbuild src/index.jsx --servedir=static --bundle --outdir=static --target=es2015 '--define:process.env.NODE_ENV=\"development\"'",
"build": "esbuild src/index.jsx --bundle --minify --outdir=static --target=es2015 '--define:process.env.NODE_ENV=\"production\"'"
},
"dependencies": {
"d3": "^6.2.0",
"evergreen-ui": "^5.1.2",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-use": "^15.3.4",
"venn.js": "^0.2.20"
},
"devDependencies": {
"esbuild": "^0.25.0"
}
}