-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.31 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
{
"name": "planner",
"version": "1.0.0",
"description": "Nuxt + Electron",
"author": "Lawrence Turton",
"private": true,
"main": "main.js",
"build": {
"appId": "com.planner.app",
"directories": {
"buildResources": "static"
}
},
"scripts": {
"dev": "cross-env NODE_ENV=DEV electron .",
"build": "nuxt build && electron-builder",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"codemirror": "^5.40.2",
"electron-vibrancy": "^0.1.3",
"google-calendar": "^1.3.2",
"html2canvas": "^1.0.0-alpha.12",
"interface-validator": "^1.1.1",
"lint": "^1.1.2",
"medium-editor": "^5.23.3",
"medium-editor-embed-button": "^1.3.0",
"node-sass": "^4.9.3",
"nuxt": "^1.4.0",
"passport": "^0.4.0",
"pg": "^7.5.0",
"sass-loader": "^7.1.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.1.4",
"electron": "2.0.0-beta.7",
"electron-builder": "^20.8.1",
"electron-devtools-installer": "^2.2.3",
"eslint": "^5.5.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"svgo": "^1.1.1",
"vue-svg-loader": "^0.11.0"
}
}