-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "pm",
"productName": "pm",
"version": "1.0.0",
"description": "Price list diff manager",
"main": "index.js",
"scripts": {
"dev": "nf start",
"start": "IS_DEV=true electron .",
"prod": "yarn start",
"build": "webpack --mode production",
"rstart": "webpack-dev-server --open --mode development",
"lint": "eslint --ext js --ext jsx src",
"dist": "electron-packager . pm --asar --overwrite --platform win32 --arch x64 --out out/",
"build-exe": "electron-installer-windows --src out/pm-win32-x64/ --dest out/installers/"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn build"
}
},
"keywords": [],
"author": "Anton Punko <ant.punko@gmail.com>",
"license": "ISC",
"dependencies": {
"electron-log": "^2.2.17",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-tabs": "^2.3.0",
"reactjs-popup": "^1.2.0",
"xlsx": "^0.14.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"electron": "^2.0.8",
"electron-installer-windows": "^1.1.0",
"electron-packager": "^12.1.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"foreman": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.13",
"style-loader": "^0.23.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
}
}