-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
{
"name": "@huskiesio/frontend",
"version": "0.1.0",
"description": "Frontend Electron app for the HuskyChat web app.",
"main": "app/background.js",
"types": "dts/index",
"keywords": [],
"scripts": {
"test": "npm run lint && jest",
"lint": "tslint --project .",
"lint-fix": "tslint --fix --project .",
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps"
},
"files": [
"js",
"dts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/huskiesio/frontend.git"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"Max Isom <hi@maxisom.me> (https://maxisom.me/)",
"Trevor Sears <trevorsears.main@gmail.com> (https://trevorsears.io/)"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/huskiesio/frontend/issues"
},
"homepage": "https://github.com/huskiesio/frontend#readme",
"dependencies": {
"@huskiesio/bot": "^0.2.6",
"@huskiesio/message-renderer": "^0.1.4",
"electron-serve": "^0.4.1",
"electron-store": "^5.1.1",
"reactn": "^2.2.6"
},
"devDependencies": {
"@huskiesio/types": "^0.1.25",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@zeit/next-sass": "^1.0.1",
"electron": "^8.0.1",
"electron-builder": "^22.3.2",
"jest": "latest",
"next": "^9.2.2",
"nextron": "^5.14.4",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tslint": "latest",
"typescript": "latest"
}
}