-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.3 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
100
101
102
103
{
"name": "p0sx-client",
"productName": "p0sX",
"version": "0.0.1",
"description": "p0sX is a Point of Sales application",
"main": "src/main.js",
"scripts": {
"start": "electron-forge start",
"dist:win64": "electron-forge make --arch x64",
"dist:linux64": "electron-forge make --arch x64",
"lint": "eslint --ext .js --ext .jsx src"
},
"keywords": [],
"author": {
"name": "Nuxis",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nuxis/p0sX-client.git"
},
"license": "MIT",
"build": {
"appId": "org.nuxis.p0sX"
},
"config": {
"forge": {
"electronPackagerConfig": {
"asar": true,
"icon": "./build/icon.ico",
"ignore": [
".idea",
".gitignore",
".eslintrc",
".github",
".git",
".webpack",
".vscode",
"^/out$",
".drone.yml",
".drone.yml.sig",
".eslintrc",
".appveyor.yml",
"jsconfig.json"
]
},
"electronWinstallerConfig": {
"loadingGif": "./build/app.gif",
"setupIcon": "./build/icon.ico"
}
}
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"electron-prebuilt-compile": "1.6.11",
"electron-forge": "^3.0.5",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"axios": "^0.21.1",
"electron-compile": "^6.4.0",
"electron-devtools-installer": "^2.2.0",
"electron-react-devtools": "^0.4.0",
"electron-settings": "^3.0.14",
"electron-squirrel-startup": "^1.0.0",
"escpos-print": "^1.1.1",
"flexboxgrid": "^6.3.1",
"font-awesome": "^4.7.0",
"history": "^4.6.1",
"material-ui": "^0.18.5",
"moment": "^2.18.1",
"printj": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-notifications": "^1.3.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"react-transition-group": "^1.1.2",
"redux": "^3.6.0",
"redux-saga": "^0.15.4",
"reselect": "^3.0.0",
"roboto-fontface": "^0.7.0",
"serialport": "^4.0.7"
}
}