forked from seokju-na/geeks-diary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "geeks-diary-sources",
"version": "1.0.0-beta2",
"description": "TIL writing tool for geeks",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/seokju-na/geeks-diary.git"
},
"scripts": {
"start": "npx electron dist/main.js",
"serve:browser:app": "npx ng build app --watch",
"serve:browser:wizard": "npx ng build wizard --watch",
"serve:main-process": "npx webpack --config webpack.electron.js --watch",
"build": "yarn build:browser && yarn build:main-process",
"build:browser": "yarn build:browser:app && yarn build:browser:wizard",
"build:browser:app": "cross-env NODE_ENV=production npx ng build app --prod",
"build:browser:wizard": "cross-env NODE_ENV=production npx ng build wizard --prod",
"build:main-process": "cross-env NODE_ENV=production npx webpack --config webpack.electron.js",
"lint": "yarn lint:browser && yarn lint:main-process",
"lint:browser": "npx ng lint app",
"lint:main-process": "npx tslint --project tsconfig.electron.json",
"test": "yarn test:browser && yarn test:main-process && yarn test:libs",
"test:browser": "npx ng test app",
"test:main-process": "npx electron-mocha --opts test/test-main-process.opts",
"test:libs": "npx electron-mocha --opts test/test-libs.opts",
"ci": "yarn lint && yarn test && yarn build",
"package": "npx ts-node scripts/package.ts",
"upload-sourcemaps": "npx ts-node scripts/upload-sourcemaps.ts",
"override-angular-dev-kit": "./scripts/override-angular-dev-kit",
"postinstall": "yarn override-angular-dev-kit"
},
"author": {
"name": "Seokju Na",
"email": "seokju.me@gmail.com",
"url": "https://seokju.me"
},
"license": "MIT",
"engines": {
"node": "~8.12.0",
"yarn": ">= 1.9.0"
},
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.3.2",
"@angular/common": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/flex-layout": "6.0.0-beta.16",
"@angular/forms": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"@ngrx/effects": "^6.0.1",
"@ngrx/store": "^6.0.1",
"@ngrx/store-devtools": "^6.0.1",
"@sentry/electron": "^0.14.0",
"codemirror": "^5.40.2",
"core-js": "^2.5.7",
"date-fns": "^1.29.0",
"dexie": "^2.0.4",
"file-url": "^2.0.2",
"fs-extra": "^7.0.0",
"get-md-title": "^1.0.4",
"highlight.js": "^9.13.1",
"js-yaml": "^3.12.0",
"line-awesome": "icons8/line-awesome",
"lodash.kebabcase": "^4.1.1",
"nodegit": "^0.22.2",
"octicons": "^7.3.0",
"path-is-inside": "^1.0.2",
"remarkable": "^1.7.1",
"remarkable-meta": "^1.0.1",
"rxjs": "6.2.2",
"typeface-open-sans": "^0.0.54",
"uuid": "^3.3.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.6.7",
"@angular/cli": "6.0.7",
"@angular/compiler": "^6.1.0",
"@angular/compiler-cli": "^6.1.0",
"@angular/language-service": "^6.1.0",
"@types/chai": "^4.1.4",
"@types/codemirror": "^0.0.60",
"@types/fs-extra": "^5.0.4",
"@types/highlight.js": "^9.12.3",
"@types/jasmine": "^2.8.8",
"@types/jasminewd2": "^2.0.3",
"@types/js-yaml": "^3.11.2",
"@types/node": "^10.5.1",
"@types/nodegit": "^0.22.3",
"@types/remarkable": "^1.7.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"awesome-typescript-loader": "^5.2.0",
"axios": "^0.18.0",
"chai": "^4.1.2",
"codelyzer": "^4.4.2",
"cross-env": "^5.2.0",
"electron": "~2.x.x",
"electron-builder": "^20.38.4",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^6.0.4",
"electron-rebuild": "^1.8.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "~1.7.1",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-electron": "^6.0.0",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash.isequal": "^4.5.0",
"node-abi": "^2.4.4",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"semver": "^5.6.0",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "2.7.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
}
}