-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.67 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
{
"name": "electron-app",
"version": "0.1.0",
"description": "Electron.js app with electron-rpc-api module usage examples",
"author": "Vladimir Yakovlev <[email protected]> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "[email protected]:vladimiry/electron-rpc-api.git",
"engines": {
"node": ">=8.9.4 <9 || >=10.0.0 < 11 || >=11"
},
"main": "./app/generated/main/index.js",
"scripts": {
"build": "webpack -c ./webpack.config.ts",
"build:watch": "webpack -c ./webpack.config.ts -w",
"build:watch:dev": "cross-env NODE_ENV=development webpack -c ./webpack.config.ts -w",
"clean": "rimraf ./app/generated",
"electron-builder:directory": "electron-builder --dir",
"electron-builder:package": "electron-builder",
"electron:start": "electron ./app/generated/main/index.js",
"lint": "npm-run-all lint:js lint:ts",
"lint:js": "yarn run lint:js:base \"./src/**/*.js\" \"./*.js\"",
"lint:js:base": "tslint",
"lint:ts": "yarn run lint:ts:base \"./src/**/*.ts\" \"./src/**/*.js\" \"./webpack.config.ts\"",
"lint:ts:base": "tslint -p ./tsconfig.json",
"start": "npm-run-all lint build electron:start",
"start:web": "cross-env NODE_ENV=development webpack-dev-server -c ./webpack.config.ts"
},
"dependencies": {
"electron-rpc-api": "5.0.0",
"rxjs": "6.5.2",
"sanitize-html": "1.20.1",
"tcp-ping": "0.1.1"
},
"devDependencies": {
"@email-securely-app/import-sort-style": "0.1.0",
"@types/html-webpack-plugin": "3.2.0",
"@types/mini-css-extract-plugin": "0.2.0",
"@types/node": "10.12.18",
"@types/sanitize-html": "1.18.3",
"@types/tcp-ping": "0.1.0",
"@types/webpack": "4.4.31",
"@types/webpack-dev-server": "3.1.5",
"@types/webpack-merge": "4.1.5",
"@types/webpack-node-externals": "1.6.3",
"awesome-typescript-loader": "5.2.1",
"bootstrap": "4.3.1",
"cross-env": "5.2.0",
"css-loader": "2.1.1",
"electron": "4.2.0",
"electron-builder": "20.40.2",
"html-webpack-plugin": "3.2.0",
"husky": "2.3.0",
"import-sort-cli": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"lint-staged": "8.1.7",
"mini-css-extract-plugin": "0.6.0",
"node-sass": "4.12.0",
"npm-run-all": "4.1.5",
"ping": "0.2.2",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"ts-node": "8.1.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"tslint": "5.16.0",
"tslint-microsoft-contrib": "6.1.1",
"tslint-rules-bunch": "0.0.7",
"typescript": "3.4.5",
"wait-on": "3.2.0",
"webpack": "4.31.0",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.3.1",
"webpack-merge": "4.2.1",
"webpack-node-externals": "1.7.2"
}
}