forked from devonfw/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.72 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
{
"name": "devonfw-dashboard",
"version": "1.0.0",
"author": {
"name": "devonfw core team",
"email": "test@devonfw.com",
"url": "https://devonfw.com/"
},
"description": "devonfw dashboard",
"main": "main/out/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/devonfw/devonfw-dashboard"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "tsc-watch -p main --onSuccess \"npm run start-no-reload\"",
"start-no-reload": "npm run build-main && electron .",
"build": "npm run build-main && npm run build-renderer",
"build-main": "tsc -p main",
"build-renderer": "next build renderer && next export renderer",
"dist": "npm run build && electron-builder",
"dist-linux": "npm run dist -- --linux",
"dist-macos": "npm run dist -- --mac",
"dist-win": "npm run dist -- --win",
"dist-unpacked": "npm run dist -- --dir",
"lint": "eslint main/**/*.ts renderer/**/*.ts renderer/**/*.tsx",
"lint-fix": "npm run lint -- --fix",
"prettier-format": "prettier --config .prettierrc \"./main/**/*.ts\" \"./renderer/**/*.{ts,tsx}\" --write"
},
"build": {
"asar": true,
"productName": "devonfw-dashboard",
"appId": "com.devonfw.devonfw-dashboard",
"icon": "resources/devon_logo.png",
"files": [
"main/out",
"renderer/out"
],
"directories": {
"buildResources": "resources"
},
"linux": {
"maintainer": "devonfw core team",
"target": [
"snap"
]
},
"mac": {
"target": [
"default"
]
},
"win": {
"target": [
"portable"
]
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint"
}
},
"devDependencies": {
"@types/node": "^12.12.57",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-plugin-styled-components": "^1.10.7",
"electron": "^8.5.2",
"electron-builder": "^22.8.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"husky": "^4.2.5",
"next": "9.5.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"tsc-watch": "^4.0.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@material-ui/core": "^4.8.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"asciidoctor": "^2.2.0",
"cross-fetch": "^3.0.5",
"electron-is-dev": "^1.0.1",
"electron-next": "^3.1.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"tar": "^6.0.5"
}
}