-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
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
{
"name": "ether-graph",
"author": "Open Studios < team@openstudios.xyz >",
"repository": "https://github.com/OpenStudiosCo/ether-graph",
"version": "1.0.0",
"description": "Ethereum Graph",
"main": "dev.js",
"scripts": {
"build": "cross-env NODE_ENV=production npm-run-all clean -p build:*",
"build:pug": "node_modules/.bin/pug src/pages -P -o docs -b .",
"build:esbuild": "node build.mjs",
"build:stylus": "node_modules/.bin/stylus src/styles.styl --out docs/styles.css",
"clean": "rimraf dist",
"dev": "npm-run-all clean build:* -p dev:*",
"dev:http": "node_modules/.bin/http-server docs",
"dev:pug": "node_modules/.bin/pug src/pages -P -o docs -w -b .",
"dev:esbuild": "node watch.mjs",
"dev:stylus": "node_modules/.bin/stylus -w src/styles.styl --out docs/styles.css"
},
"devDependencies": {
"cross-env": "^7.0.3",
"d3": "^6.0.0",
"d3-voronoi-treemap": "^1.1.2",
"esbuild": "0.19.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^6.0.1",
"stylus": "^0.63.0"
}
}