-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 868 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "electron-angularjs-sqlite",
"version": "1.0.0",
"description": "Um aplicativo simples usando AngularJS, Sqlite, Electron e Bootstrap",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"win32": "electron-packager . myApp --platform=win32 --arch=ia32",
"win64": "electron-packager . myApp --platform=win32 --arch=x64",
"linux32": "electron-packager . myApp --platform=linux --arch=ia32",
"linux64": "electron-packager . myApp --platform=linux --arch=x64",
"osx": "electron-packager . myApp --platform=darwin --arch=x64",
"build": "electron-packager . --all"
},
"devDependencies": {
"electron-prebuilt": "^0.36.0",
"electron-packager":"^6.0.0",
"sqlite-sync":"^0.2.1",
"jquery":"^2.2.2",
"angular": "^1.5.1",
"angular-route": "^1.5.1",
"angular-utils-pagination":"^0.11.0"
}
}