-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.78 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
{
"name": "bluebird-work-shift",
"productName": "파랑새둥지 근무표 Viewer",
"version": "2.1.2",
"description": "파랑새둥지 근무표 Viewer",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win",
"deploy:win": "npm run build:win && electron-builder --publish always",
"build:mac": "electron-builder --mac",
"deploy:mac": "npm run build:mac && electron-builder --publish always",
"lint": "echo \"No linting configured\"",
"test": "jest",
"test:watch": "jest --watch"
},
"build": {
"appId": "com.bluebird.work-shift",
"copyright": "Copyright 2024 이성연",
"publish": {
"provider": "github"
},
"mac": {
"icon": "blue-bird.png",
"target": "dmg"
},
"win": {
"icon": "blue-bird.png",
"target": "nsis"
},
"directories": {
"output": "dist"
}
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"electron": "32.1.0",
"electron-builder": "^25.1.8",
"jest": "^29.7.0"
},
"keywords": [
"electron",
"workshift",
"viewer",
"근무표"
],
"author": {
"name": "YeonSeong-Lee",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/YeonSeong-Lee/bluebird_workshift_viewer.git"
},
"license": "MIT",
"dependencies": {
"chokidar": "^4.0.1",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.3.9",
"exceljs": "^4.4.0",
"googleapis": "^144.0.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"testMatch": [
"**/__tests__/**/*.test.js"
]
}
}