forked from Zettlr/Zettlr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.73 KB
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
{
"name": "zettlr",
"homepage": "https://www.zettlr.com",
"author": {
"name": "Hendrik Erz",
"email": "zettlr@mailbox.org"
},
"repository": {
"type": "git",
"url": "git://github.com/Zettlr/Zettlr.git"
},
"version": "1.4.1",
"license": "GPL-3.0",
"description": "A powerful Markdown editor for researchers.",
"main": "./source/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"build:quick": "node scripts/build-app.js --dir",
"release:this": "node scripts/build-app.js",
"release:mac": "node scripts/build-app.js --mac",
"release:win": "node scripts/build-app.js --win",
"release:linux": "node scripts/build-app.js --linux",
"less": "node scripts/less.js",
"less:extract": "node scripts/extract-css.js",
"handlebars": "node scripts/handlebars.js",
"lang:refresh": "node scripts/refresh-language.js",
"reveal:build": "node scripts/update-reveal.js",
"wp:dev": "cross-env NODE_ENV=development webpack",
"wp:prod": "cross-env NODE_ENV=production webpack"
},
"dependencies": {
"@zettlr/citr": "^1.0.4",
"adm-zip": "^0.4.13",
"astrocite": "^0.15.0",
"bcp-47": "^1.0.5",
"chart.js": "^2.7.2",
"chokidar": "^3.0.2",
"citeproc": "^2.2.23",
"codemirror": "^5.48.4",
"command-exists": "^1.2.7",
"got": "^9.6.0",
"jquery": "^3.4.1",
"katex": "^0.11.0",
"md5": "^2.2.1",
"moment": "^2.24.0",
"nspell": "^2.1.1",
"on-change": "^1.6.2",
"rimraf": "^3.0.0",
"sanitize-filename": "^1.6.3",
"semver": "^6.3.0",
"showdown": "^1.8.6",
"tippy.js": "^4.3.5",
"uuid": "^3.3.3",
"vue": "^2.6.10",
"vuex": "^3.1.1"
},
"devDependencies": {
"chalk": "^2.4.2",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"csso": "^3.5.1",
"electron": "^6.0.7",
"electron-builder": "^21.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"handlebars": "^4.1.2",
"less": "^3.10.3",
"mini-css-extract-plugin": "^0.8.0",
"reveal.js": "^3.8.0",
"string-extract-class-names": "^5.8.40",
"uglify-js": "^3.6.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"vue-virtual-scroller": "^1.0.0-rc.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}