-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.94 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.94 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
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
{
"name": "electrom",
"version": "34.0.2",
"description": "Electrom is a resource management solution for Electron applications, which is convenient for performance management and friendly debugging of multiple windows",
"scripts": {
"build": "sh ./build.sh",
"build:web": "cross-env NODE_ENV=production webpack",
"dev": "concurrently npm:dev:*",
"dev:main": "cross-env NODE_ENV=development electron ./example/bootstrap.js",
"dev:web": "cross-env NODE_ENV=development webpack-dev-server",
"test": "jest",
"lint": "eslint --fix --quiet --ext .js,.jsx ./src",
"prepublishOnly": "npm run build",
"contributor": "git-contributor"
},
"main": "./lib/main",
"keywords": [
"electron",
"electrom",
"ps"
],
"files": [
"dist/**/*.js",
"dist/**/*.html",
"lib/common/**/*.js",
"lib/common/**/*.d.ts",
"lib/main/**/*.js",
"lib/main/**/*.d.ts",
"lib/main/coverage/reporter.html",
"lib/main/monitor/reporter.template.html",
"lib/renderer/**/*.js",
"lib/renderer/**/*.d.ts",
"lib/renderer/**/*.less",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.less"
],
"repository": {
"type": "git",
"url": "https://github.com/electron-modules/electrom"
},
"dependencies": {
"@ant-design/icons": "4",
"debug": "4",
"filesize": "6",
"lodash": "4",
"mkdirp": "1.0.4",
"moment": "2"
},
"devDependencies": {
"@applint/spec": "^1.2.0",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.181",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@typescript-eslint/parser": "^5.19.0",
"antd": "^4.9.4",
"classnames": "^2.2.6",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.8",
"css-minimizer-webpack-plugin": "^4.2.2",
"detect-port": "1",
"electron": "34",
"electron-windows": "34",
"eslint": "^7.32.0",
"git-contributor": "*",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"less": "3.11.3",
"less-loader": "^6.2.0",
"monitor.js": "^2.0.1",
"prettier": "^2.6.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^1.1.2",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"jest": {
"testEnvironment": "node",
"transform": {
"\\.(ts|tsx|js|jsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"dist"
]
},
"license": "MIT"
}