-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
68 lines (68 loc) · 2.19 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dist.ipfs.tech",
"version": "1.0.0",
"description": "Source for building https://dist.ipfs.tech.",
"main": "",
"private": true,
"scripts": {
"standard": "standard scripts/*.js site/assets/js/*.js",
"lint": "npm run standard && shellcheck *.sh",
"clean": "rm -rf site/static/*.js site/static/*.css site/data/releases",
"dist": "node scripts/dist.js",
"webpack:build": "webpack -p --display minimal",
"webpack:watch": "webpack --watch-stdin",
"less:watch": "onchange 'site/assets/less/**/*.less' -- npm run less:build",
"less:build": "lessc site/assets/less/main.less --clean-css site/static/site.css",
"build:hugo": "hugo -s site -d ../releases",
"build:assets": "npm run less:build && npm run webpack:build",
"build": "npm run dist && npm run build:assets && npm run build:hugo",
"start": "npm run clean && npm run dist && npm run less:build && npm run webpack:build && concurrently --kill-others 'npm run less:watch' 'npm run webpack:watch' 'hugo serve -s site'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/distributions.git"
},
"keywords": [
"ipfs"
],
"author": "Juan Benet <[email protected]> (http://juan.benet.ai/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/distributions/issues"
},
"homepage": "https://github.com/ipfs/distributions#readme",
"engines": {
"node": ">=10.0.0",
"npm": ">=5.0.0"
},
"dependencies": {
"bootstrap": "^4.3.1",
"jquery": "^3.4.1",
"platform": "^1.3.5",
"popper.js": "^1.15.0",
"slicknav": "^1.0.8",
"tether": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-loader": "^8.0.0",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.7",
"chalk": "^4.1.0",
"concurrently": "^4.1.2",
"del": "^5.1.0",
"hugo-bin": "^0.64.5",
"ipfs-http-client": "^47.0.1",
"it-all": "^1.0.4",
"it-concat": "^1.0.2",
"less": "^3.10.3",
"less-plugin-clean-css": "^1.5.1",
"make-promises-safe": "^5.1.0",
"onchange": "^6.1.0",
"shellcheck": "^0.4.2",
"standard": "^13.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}