-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "seeder",
"version": "0.1.0",
"description": "A Dat seeder service",
"main": "index.js",
"scripts": {
"test": "xo",
"start": "node server.js",
"watch": "watchify -t sheetify -o bundles/bundle.js frontend/index.js",
"build": "browserify -t sheetify -o bundles/bundle.js frontend/index.js",
"update": "git pull origin master && npm run build && systemctl restart dat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/new-computers/seeder.git"
},
"author": "kodedninja",
"license": "MIT",
"bugs": {
"url": "https://github.com/new-computers/seeder/issues"
},
"homepage": "https://github.com/new-computers/seeder#readme",
"xo": {
"semicolon": false,
"no-var": false,
"rules": {
"no-var": 0,
"no-undef": 0,
"camelcase": 0,
"capitalized-comment": 0,
"new-cap": 0,
"no-negated-condition": 0
}
},
"dependencies": {
"dat-node": "^3.5.8",
"dayjs": "^1.5.15",
"du": "^0.1.0",
"fs-extra": "^5.0.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"parse-dat-url": "^3.0.1",
"sheetify": "^7.3.1"
},
"devDependencies": {
"browserify": "^16.1.1",
"choo": "^6.11.0-preview1",
"nanocomponent": "^6.5.1",
"nanohtml": "^1.2.2",
"watchify": "^3.11.0"
}
}