forked from HyunmoAhn/Tiny-Timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 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
{
"name": "Tiny-Timer",
"version": "1.0.2",
"description": "Simple timer desktop application using electron",
"main": "./build/main.js",
"repository": "https://github.com/HyunmoAhn/Tiny-Timer.git",
"author": "hyunmoahn <mos_dev@naver.com>",
"license": "MIT",
"scripts": {
"dev": "electron -r @babel/register ./app/index.js",
"main": "nodemon --exec \"npm run dev\" --ext js --ignore build/ --ignore dist/ --ignore app/page",
"start": "NODE_ENV=development webpack-dev-server --hot --inline --watch",
"build": "npm run build:page && build -c electron-builder.yml -mwl",
"build:page": "NODE_ENV=production webpack",
"package": "npm run build:page && build -p always -c electron-builder.yml -mwl"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"auto-launch": "^5.0.5",
"classnames": "^2.2.6",
"electron-updater": "^3.1.5",
"menubar": "^5.2.3",
"mousetrap": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"electron": "^3.0.4",
"electron-builder": "^20.28.4",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.4",
"nodemon": "^1.18.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}