forked from TheThingsNetwork/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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": "ttn-docs",
"private": true,
"version": "2.0.0",
"description": "The Things Network documentation.",
"main": "js/main.js",
"scripts": {
"start": "npm run prod",
"dev": "rm -rf _site && npm run dev-webpack & npm run dev-jekyll",
"prod": "rm -rf _site && npm run webpack && npm run jekyll",
"test": "true || npm run htmlproof",
"jekyll": "bundle exec jekyll serve",
"dev-jekyll": "bundle exec jekyll serve --incremental",
"pull": "node _scripts/pull.js",
"scp": "npm run webpack && node _scripts/scp.js",
"webpack": "webpack -p",
"dev-webpack": "webpack --watch",
"htmlproof": "rm -rf _test && bundle exec jekyll build -d ./_test/docs && bundle exec htmlproofer --allow-hash-href --url-ignore '/github.com\\/TheThingsNetwork\\/docs\\/edit/' --url-swap 'http(s)?\\://www\\.thethingsnetwork\\.org/docs:/docs' ./_test",
"add": "git add ."
},
"pre-commit": [
"webpack",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thethingsnetwork/docs.git"
},
"author": "The Things Network",
"license": "MIT",
"bugs": {
"url": "https://github.com/thethingsnetwork/docs/issues"
},
"homepage": "https://github.com/thethingsnetwork/docs#readme",
"dependencies": {
"font-awesome": "^4.7.0",
"stylebook": "thethingsnetwork/stylebook"
},
"devDependencies": {
"anchor-js": "^3.2.1",
"async": "^2.1.2",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"clipboard": "^1.5.12",
"dotenv": "^2.0.0",
"jquery": "^3.3.1",
"js-yaml": "^3.7.0",
"pre-commit": "^1.1.3",
"request": "^2.78.0",
"webpack": "^1.13.1"
}
}