-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.4 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hanyang-crm",
"version": "0.2.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.x",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.2.10",
"aws-sdk": "^2.840.0",
"csstype": "^3.0.6",
"d3": "^6.5.0",
"date-fns": "^2.16.1",
"electron-pos-printer": "^1.2.4",
"history": "^4.0.0",
"immer": "^8.0.1",
"node-hid": "^2.1.1",
"node-pre-gyp": "^0.17.0",
"node-thermal-printer": "^4.1.2",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"serialport": "^9.0.7",
"sqlite3": "4.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/d3": "^6.3.0",
"@types/history": "^4.7.8",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/node-hid": "^1.3.0",
"@types/react": "^16.9.53",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.16",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/redux-actions": "^2.6.1",
"@types/sqlite3": "^3.1.7",
"cross-env": "^7.0.3",
"electron": "^8.2.0",
"electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"rebuild": "electron-rebuild -w sqlite3",
"test": "react-scripts test",
"eject": "react-scripts eject",
"react-start": "set BROWSER=none && yarn start",
"electron-start": "set ELECTRON_START_URL=http://localhost:3000 && cross-env NODE_ENV=development electron .",
"electron-pack": "yarn build && electron-builder build -c.extraMetadata.main=build/Main.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"main": "public/Main.js",
"homepage": "./",
"build": {
"files": [
"build/*"
],
"extraFiles": [
"database.db"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": true,
"language": 1042,
"perMachine": false,
"shortcutName": "한양CRM",
"createDesktopShortcut": "always",
"include": "script/installer.nsh"
}
}
}