-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "bookmarking-app",
"version": "1.0.0",
"description": "A Bookmarking App using Electron, VueJs and sqlite3",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron main.js",
"rebuild-sqlite3-win32": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v46-win32-x64 && node-gyp rebuild --target=1.4.4 --arch=x64 --target_platform=win32 --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/electron-v1.4-win32-x64"
},
"author": "chaegumi",
"license": "MIT",
"dependencies": {
"jquery": "^3.1.1",
"sqlite3": "^3.1.7",
"vee-validate": "^2.0.0-beta.13",
"vue": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-runtime": "^5.8.38",
"css-loader": "^0.25.0",
"electron": "^9.1.0",
"vue-hot-reload-api": "^2.0.6",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.7.0",
"vue-style-loader": "^1.0.0",
"vue-validator": "^2.1.5",
"webpack": "^1.13.2",
"webpack-dev-server": "^3.1.11"
}
}