-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.25 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
70
71
72
73
{
"name": "apexed",
"version": "0.0.1",
"description": "Graphical User Interface for RealTime Apex and SOQL execution",
"main": "app/index.js",
"scripts": {
"build:dev": "NODE_ENV=development && ngc && rollup -c rollup-config.js",
"build:prod": "NODE_ENV=production && ngc && rollup -c rollup-config.js",
"clean": "rm -rf gen/ app/build.gen.js ",
"start:dev": "electron app/index.js --dev",
"start": "electron app/index.js",
"build:start": "npm run build:dev && npm run start",
"build:start:dev": "npm run build:dev && npm run start:dev",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "npm run build:dev && electron-builder --dir",
"dist": "npm run build:prod && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "br.com.igoraraujo91.apexed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/araujoigor/apexed.git"
},
"keywords": [
"SOQL",
"Apex",
"Salesforce",
"electron"
],
"author": {
"name": "Igor Araujo",
"email": "igor.araujo91@gmail.com",
"url": "https://github.com/araujoigor"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/araujoigor/apexed/issues"
},
"homepage": "https://github.com/araujoigor/apexed#readme",
"devDependencies": {
"@angular/compiler-cli": "^4.0.0",
"electron": "^1.7.3",
"electron-builder": "^19.7.1",
"rollup": "^0.43.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"typescript": "~2.4.0"
},
"dependencies": {
"@angular/animations": "^4.0.0",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/material": "^2.0.0-beta.8",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"ace-builds": "^1.2.6",
"core-js": "^2.4.1",
"material-design-icons": "^3.0.1",
"rxjs": "^5.1.0",
"sfid": "^1.1.0",
"simple-object-flatten": "^0.0.1",
"zone.js": "^0.8.4"
}
}