forked from ionic-team/ionic-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.85 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@modus/motherboard-docs",
"version": "0.0.1",
"description": "Motherboard Docs Site",
"engines": {
"node": "10.x.x",
"npm": "6.x.x"
},
"scripts": {
"start": "npm run server",
"build": "stencil build --prerender",
"dev": "sd concurrent \"stencil build --dev --watch\" \"npm run server\" \"browser-sync start --config bs-config.js\" ",
"lint": "tslint --config tslint.json --project tsconfig.json",
"precommit": "npm run lint",
"docgen": "bash -c 'node scripts/build/scripts/docgen --section=\"${1-all}\"' --",
"docgen-watch": "sd concurrent \"tsc -p scripts/tsconfig.json --watch\" \"chokidar 'scripts/build/**/*.js' -c 'node scripts/build/scripts/docgen'\"",
"predocgen": "tsc -p scripts/tsconfig.json",
"server": "node server/build",
"server-watch": "sd concurrent \"tsc -p server/tsconfig.json --watch\" \"chokidar 'server/build/**/*.js' -c 'npm run server'\" \"npm run dev\"",
"preserver": "tsc -p server/tsconfig.json",
"heroku-postbuild": "npm run docgen && npm run build",
"checksum": "npm run predocgen && node scripts/build/scripts/sumchecker",
"localize": "node scripts/build/scripts/localize",
"prelocalize": "tsc -p scripts/tsconfig.json",
"download": "node scripts/build/scripts/download",
"predownload": "tsc -p scripts/tsconfig.json"
},
"dependencies": {
"@stencil/core": "^0.13.1",
"@stencil/router": "^0.3.0",
"@stencil/sass": "0.1.0",
"@stencil/utils": "latest",
"@types/node": "^8.10.9",
"@types/semver": "^5.5.0",
"@types/unzip": "^0.1.1",
"@types/unzipper": "^0.9.1",
"archiver-promise": "^1.0.0",
"aws-sdk": "^2.318.0",
"chokidar": "^2.0.2",
"chokidar-cli": "^1.2.1",
"commander": "^2.17.1",
"compression": "^1.7.2",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"front-matter": "^2.3.0",
"glob": "^7.1.3",
"helmet": "^3.12.0",
"highlight.js": "^9.12.0",
"husky": "^0.14.3",
"inquirer": "^6.2.0",
"intersection-observer": "^0.5.0",
"ionicons": "^4.4.3",
"is-ci": "^1.2.1",
"listr": "SamVerschueren/listr",
"listr-verbose-renderer": "^0.4.1",
"marked": "^0.3.18",
"path": "^0.12.7",
"semver": "^5.5.0",
"tslint": "^5.9.1",
"tslint-ionic-rules": "0.0.16",
"typedoc": "^0.11.1",
"typescript": "^3.0.0",
"unzipper": "^0.9.4"
},
"devDependencies": {
"browser-sync": "^2.26.0"
},
"cacheDirectories": [
"sources",
"node_modules",
"scripts/build",
"server/build",
"src/content/api",
"src/content/cli",
"src/content/native"
],
"author": "Modus Create",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/moduscreateorg/motherboard-docs.git"
},
"bugs": {
"url": "https://github.com/moduscreateorg/motherboard-docs"
},
"homepage": "https://labs.moduscreate.com"
}