-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "system-companion",
"version": "1.0.1",
"description": "Nuxt + Electron",
"author": "romslf@pm.me",
"private": false,
"repository": {
"type" : "git",
"url" : "https://github.com/romslf/system-companion.git"
},
"main": "main.js",
"build": {
"appId": "",
"directories": {
"buildResources": "static"
},
"files": [
"dist/**/*",
"package.json"
]
},
"scripts": {
"dev": "cross-env NODE_ENV=DEV electron .",
"build": "nuxt build && electron-builder --config builder.config.js --publish never",
"deploy": "nuxt build && electron-builder --config builder.config.js --publish always",
"lint": "node_modules/.bin/eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter ./src",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"buefy": "^0.9.10",
"electron-data-storage": "^1.1.2",
"electron-updater": "^4.3.9",
"node-sass": "^7.0.0",
"nuxt": "^1.4.0",
"sass": "^1.39.0",
"systeminformation": "^5.8.7"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"cross-env": "^5.1.4",
"electron": "15.5.5",
"electron-builder": "^20.8.1",
"electron-devtools-installer": "^2.2.3",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-vue": "^4.0.0",
"sass-loader": "^7.3.1"
}
}