-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "docable-notebooks",
"version": "0.4.0",
"description": "Notebooks for CM and DevOps",
"main": "index.js",
"bin": "index.js",
"scripts": {
"dev": "cross-env LOG_LEVEL=debug NODE_ENV=dev nodemon ./index.js --notebook_dir docs/examples/ | pino-pretty",
"hosted-dev": "cross-env LOG_LEVEL=debug NODE_ENV=prod DOCABLE_CONTENTEDITABLE=true DOCABLE_SERVICES=dev nodemon ./index.js -- --notebook_dir docs/examples/ ",
"prod": "cross-env LOG_LEVEL=debug NODE_ENV=prod DOCABLE_CONTENTEDITABLE=true pm2 start ./index.js -- --notebook_dir docs/examples/ ",
"deploy": "NODE_ENV=prod pm2 start index.js",
"init-modules": "git submodule update --init --recursive && git submodule foreach npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottomatica/docable-notebooks.git"
},
"keywords": [
"docable",
"notebook",
"devops"
],
"pkg": {
"assets": [
"views/**/*",
"docs/**/*",
"public/js/**/*",
"public/css/**/*",
"public/media/**/*",
"modules/repl/public/js/**/*"
]
},
"author": "ottomatica",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ottomatica/docable-notebooks/issues"
},
"homepage": "https://github.com/ottomatica/docable-notebooks#readme",
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.12",
"pino-pretty": "^4.8.0",
"pm2": "^4.5.6"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"configstore": "^5.0.1",
"docable": "github:ottomatica/docable",
"dotenv": "^8.6.0",
"ejs": "^3.1.6",
"escape-goat": "^3.0.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"express-session": "^1.17.2",
"got": "^11.8.2",
"infra.connectors": "github:ottomatica/infra.connectors",
"js-yaml": "^3.14.1",
"jsdom": "^16.7.0",
"md5": "^2.3.0",
"open": "^7.4.2",
"open-editor": "^2.0.1",
"pino": "^6.13.1",
"prettier": "^2.3.2",
"simple-git": "^2.45.0",
"slash": "^3.0.0",
"socket.io": "^4.3.2",
"turndown": "^7.1.1",
"yargs": "^15.4.1"
}
}