-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 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
{
"private": true,
"name": "makane",
"productName": "Makane",
"version": "0.0.0",
"description": "graphical process manager",
"keywords": [],
"license": "MIT",
"author": "airt <[email protected]>",
"main": "src/main.ts",
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/cdk": "^5.0.0-rc.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@types/debug": "^0.0.30",
"@types/delay": "^2.0.0",
"@types/electron-is-dev": "^0.3.0",
"@types/lodash": "^4.0.0",
"@types/mz": "^0.0.32",
"@types/uuid": "^3.0.0",
"angular2-moment": "^1.0.0",
"async-validator": "^1.0.0",
"debug": "^3.0.0",
"delay": "^2.0.0",
"electron-compile": "^6.0.0",
"electron-devtools-installer": "^2.0.0",
"electron-is-dev": "^0.3.0",
"electron-squirrel-startup": "^1.0.0",
"electron-unhandled": "^1.0.0",
"lodash": "^4.0.0",
"moment": "^2.0.0",
"mz": "^2.0.0",
"ng-zorro-antd": "^0.6.0",
"reflect-metadata": "^0.1.0",
"rxjs": "^5.0.0",
"tslib": "^1.0.0",
"uuid": "^3.0.0",
"zone.js": "^0.8.0"
},
"devDependencies": {
"babel-preset-env": "^1.0.0",
"electron-forge": "^4.0.0",
"electron-prebuilt-compile": "1.7.9",
"pre-commit": "^1.0.0",
"prettier": "~1.9.0",
"tslint": "^5.0.0",
"tslint-config-levi": "^0.1.0",
"typescript": "^2.0.0"
},
"pre-commit": ["lint"],
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"test": "echo todo",
"lint": "tslint -p . -t verbose",
"prettify": "prettier --write 'src/**/*.ts'"
}
}