forked from dat-ecosystem-archive/old-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 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
67
68
69
{
"name": "dat-website",
"version": "1.0.0",
"description": "dat-data.com source",
"main": "index.js",
"scripts": {
"start": "npm run watch & npm run watch-css & npm run server",
"server": "cd rendered && nodemon --exec http-server -e js,css,html -i data/ -i static/",
"test": "node test/run.js | tap-spec",
"watch": "watchify -t brfs index.js -o bundle.js",
"watch-css": "autoless static/styles",
"css": "autoless static/styles --no-watch",
"deploy": "gh-pages-deploy",
"render": "node render.js"
},
"keywords": [
"data",
"datasets",
"publish",
"registry",
"dathub",
"dat",
"web"
],
"gh-pages-deploy": {
"staticpath": "rendered",
"cname": "dat-data.com",
"prep": [
"css",
"render"
],
"noprompt": false
},
"author": "dat project",
"license": "BSD",
"bugs": {
"url": "https://github.com/datproject/website/issues"
},
"homepage": "http://dat-data.com",
"dependencies": {
"cheerio": "^0.19.0",
"cptar": "^1.0.0",
"gh-pages-deploy": "^0.3.0",
"handlebars": "^4.0.5",
"jquery": "^2.1.1",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"nodemon": "^1.2.1",
"page": "^1.4.1",
"rimraf": "^2.4.4",
"rss": "^1.2.1",
"xhr": "^2.0.3"
},
"devDependencies": {
"page-router": "^1.0.1",
"autoless": "^0.1.5",
"brfs": "^1.4.0",
"browserify": "^7.0.0",
"dom": "0.0.3",
"gravatar": "^1.1.1",
"http-server": "^0.8.0",
"mustache": "^2.0.0",
"watchify": "^2.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datproject/website.git"
}
}