forked from vhvy/XiaoMu-PosSystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "xiaomu-possystem",
"version": "1.0.0",
"description": "小超市收银系统,包含前台和后台。",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"postinstall": "electron-builder install-app-deps",
"build": "cross-env NODE_ENV=production electron-builder build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhvy/XiaoMu-PosSystem.git"
},
"author": "vhvy",
"license": "MIT",
"bugs": {
"url": "https://github.com/vhvy/XiaoMu-PosSystem/issues"
},
"homepage": "https://github.com/vhvy/XiaoMu-PosSystem#readme",
"devDependencies": {
"cross-env": "^7.0.2",
"electron-builder": "^22.4.1",
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.16.0",
"electron": "^8.2.0"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"bcrypt": "^3.0.7",
"core-js": "^3.6.4",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mathjs": "^6.2.5",
"moment": "^2.24.0",
"pinyin": "^2.9.0",
"sqlite3": "^4.1.0"
},
"build": {
"appId": "com.xiaomupos.system",
"files": [
"main.js",
"public/**/*",
"client/dist/**/*"
],
"extraFiles": [
{
"from": "server/db/data.db",
"to": "db/data.db"
}
],
"directories": {
"output": "build"
},
"win": {
"target": "dir",
"icon": "client/src/styles/images/logo.png"
}
}
}