-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
{
"name": "wharf",
"productName": "Wharf",
"version": "0.2.0",
"description": "Manage processes running on localhost.",
"main": "./dist/main.js",
"scripts": {
"clean": "rm -rf dist && rm -rf release",
"prebuild": "npm run clean",
"build": "webpack --config webpack.main.config.js --mode production",
"prestart": "npm run clean",
"start": "webpack --config webpack.main.config.js --mode development && electron ./dist/main.js",
"lint": "tslint '{src,test,mocks}/**/*.{ts,tsx}' --project ./tsconfig.json",
"precommit": "lint-staged",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder"
},
"keywords": [],
"author": "Mark Rabey <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:MarkRabey/wharf.git"
},
"bugs": {
"url": "https://github.com/MarkRabey/wharf/issues"
},
"license": "MIT",
"dependencies": {
"listening-processes": "^1.2.0",
"lodash": "^4.17.5"
},
"devDependencies": {
"@types/lodash": "^4.14.106",
"@types/webdriverio": "^4.10.1",
"@types/webpack-env": "^1.13.5",
"babel-loader": "^7.1.4",
"copy-webpack-plugin": "^4.5.1",
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1",
"spectron": "^3.8.0",
"ts-loader": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-merge": "^4.1.2"
},
"lint-staged": {
"{src,test,mocks}/**/*.{js,ts,tsx,json,css,scss,md}": [
"prettier --config ./.prettierrc --write",
"git add"
],
"{src,test,mocks}/**/*.{js,ts,tsx}": [
"tslint --project ./tsconfig.json --fix",
"git add"
]
},
"build": {
"productName": "Wharf",
"appId": "com.markrabey.wharf",
"mac": {
"category": "public.app-category.utilities",
"icon": "src/assets/system-icon/icon.icns"
},
"directories": {
"output": "release"
},
"files": [
"dist/",
"package.json"
]
}
}