-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.28 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.28 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
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
{
"name": "hyper-recent",
"type": "module",
"version": "1.0.0",
"description": "Hyper-recent article feed",
"main": "src/index.js",
"bin": {
"hyper-recent": "hyper-recent.js"
},
"scripts": {
"start": "http-server -p 3000 --proxy http://localhost:3000? dist",
"build:data": "node src/data-search.js",
"build:css": "esbuild --bundle src/dashboard/index.css --outfile=src/dashboard/build/bundle.css --loader:.jpg=dataurl",
"watch:css": "esbuild --bundle src/dashboard/index.css --outfile=src/dashboard/build/bundle.css --loader:.jpg=dataurl --watch --sourcemap",
"build:js": "esbuild src/dashboard/index.js --bundle --outfile=src/dashboard/build/bundle.js",
"watch:js": "esbuild src/dashboard/index.js --bundle --outfile=src/dashboard/build/bundle.js --watch --sourcemap",
"build": "run-s build:data build:css build:js dist",
"dist:build": "cpy --flat src/dashboard/build/* dist/build",
"dist:index": "cpy --flat src/dashboard/index.html dist",
"dist:img": "cpy --flat src/dashboard/img dist/img",
"dist": "run-s dist:*",
"watch": "run-p watch:css watch:js watch:reload watch:http",
"watch:reload": "livereload src/dashboard",
"watch:http": "http-server -o -p 3000 --proxy http://localhost:3000? src/dashboard",
"test": "mocha",
"coverage": "nyc mocha",
"fix": "eslint ./src --fix",
"lint": "eslint ./src",
"clean": "rimraf dist src/dashboard/build"
},
"author": "Pathway Commons",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"cpy-cli": "^4.2.0",
"esbuild": "^0.15.13",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"http-server": "^14.1.1",
"livereload": "^0.9.3",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0",
"date-fns": "^2.29.3",
"eventemitter3": "^4.0.7",
"get-stdin": "^9.0.0",
"lodash": "^4.17.21",
"minisearch": "^5.0.0",
"node-fetch": "^3.2.6",
"preact": "^10.11.0",
"preact-router": "^4.1.0"
},
"engines": {
"node": "16.16.0"
}
}