forked from NoteSelf/NoteSelf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "noteself",
"version": "0.14.3",
"description": "A notebook that syncs!",
"main": "index.js",
"scripts": {
"add-module": "node .bin/new-file.js",
"brocco": "npm run clean && broccoli build",
"build-plugin": "npm run brocco -- ./plugins/noteself",
"tw": "node -r dotenv/config ./node_modules/tiddlywiki/tiddlywiki.js",
"tw-dev": "nodemon node_modules/tiddlywiki/tiddlywiki.js",
"start": "npm run build-plugin && npm run tw-dev -- ./wiki-dev --verbose --server 8087 $:/core/save/all text/plain text/html '' '' 0.0.0.0",
"build": "npm run tw -- ./wiki --verbose --build index --build OnlineDemo",
"clean": "rimraf ./plugins/noteself",
"watch": "nodemon -r dotenv/config --exec 'npm run build-plugin' --watch src -e js,sccs",
"postinstall": "mkdir plugins"
},
"repository": {
"type": "git",
"url": "https://github.com/noteself"
},
"keywords": [
"tiddlywiki",
"notebook",
"pouchdb",
"sync"
],
"author": "Danielo Rodríguez Rivero",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"broccoli": "^1.1.4",
"broccoli-babel-transpiler": "^6.1.4",
"broccoli-cli": "^1.0.0",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.0",
"broccoli-replace": "^0.12.0",
"broccoli-sass-source-maps": "^2.2.0",
"broccoli-uglify-sourcemap": "^2.1.1",
"configstore": "^3.1.2",
"cross-env": "^5.0.1",
"ejs": "^2.5.9",
"inquirer": "^5.2.0",
"rimraf": "^2.6.2",
"tiddlywiki": "5.1.17",
"travis-weigh-in": "^1.0.2"
},
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^5.0.1"
}
}