-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "corkboard",
"productName": "Corkboard",
"version": "1.5.0",
"description": "Sticky Notes & Pictures",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production webpack",
"build-watch": "cross-env NODE_ENV=development webpack --watch",
"start": "cross-env NODE_ENV=production electron .",
"start-dev": "cross-env NODE_ENV=development electron .",
"pack": "cross-env NODE_ENV=production electron-builder --dir",
"dist": "cross-env NODE_ENV=production electron-builder",
"lint": "cross-env eslint ./ --ext .vue",
"lint-fix": "cross-env eslint ./ --fix --ext .vue",
"postinstall": "cross-env electron-builder install-app-deps"
},
"author": "R. J. Young",
"license": "MIT",
"build": {
"appId": "com.richjyoung.corkboard",
"directories": {
"output": "out"
},
"files": [
"!view/*",
"!state/*",
"!data/*",
"!utils/*"
],
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "portable"
}
]
}
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.5",
"@fortawesome/fontawesome-free-regular": "^5.0.9",
"@fortawesome/fontawesome-free-solid": "^5.0.9",
"@fortawesome/vue-fontawesome": "0.0.22",
"mkdirp": "^0.5.1",
"sqlite3": "^4.0.0",
"touch": "^3.1.0",
"vue": "^2.5.16",
"vuex": "^3.0.1"
},
"devDependencies": {
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"eslint": "^4.19.1",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-vue": "^4.4.0",
"file-loader": "^1.1.11",
"vue-devtools": "^3.1.9",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13"
}
}