forked from freddie-tu/marker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "marker",
"version": "1.0.0",
"description": "markdown editor",
"main": "dist/main.js",
"scripts": {
"postinstall": "node postinstall.js",
"clean": "gulp clean",
"build": "gulp build:dev",
"build:prod": "gulp build:prod",
"watch": "gulp watch",
"launch": "electron ./dist/host.js",
"release": "build",
"build:dev:client": "gulp webpack:dev:client",
"build:prod:client": "gulp webpack:prod:client",
"build:dev:host": "gulp webpack:dev:host",
"build:prod:host": "gulp webpack:prod:host"
},
"author": "Freddie",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/katex": "^0.5.0",
"@types/marked": "^0.3.0",
"animate.css": "^3.6.1",
"awesome-typescript-loader": "^3.5.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babili-webpack-plugin": "^0.1.2",
"brace": "^0.11.1",
"bulma": "^0.6.2",
"css-loader": "^0.28.10",
"electron": "^1.8.3",
"electron-builder": "^19.56.2",
"font-awesome": "^4.7.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-cssmin": "^0.2.0",
"gulp-sass": "^3.2.0",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.30.1",
"katex": "^0.9.0",
"marked": "^0.3.17",
"moment": "^2.21.0",
"node-sass": "^4.8.1",
"rxjs": "^5.5.6",
"sass-loader": "^6.0.7",
"shelljs": "^0.7.8",
"typescript": "^2.7.2",
"typescript-ioc": "^1.1.0",
"vue": "^2.5.15",
"vue-loader": "^13.7.1",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.15",
"webpack": "^3.11.0",
"webpack-merge": "^4.1.2"
},
"build": {
"appId": "app.marker.id",
"directories": {
"output": "build"
},
"files": [
"dist/**/*"
],
"win": {
"icon": "config/build/icons/icon.ico"
},
"asar": true,
"publish": null
}
}