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
|
{
"name": "application",
"version": "1.0.0",
"main": "dist/main.js",
"author": "Valentin Popov <info@valentineus.link>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js --progress",
"lint": "standard ./src/**/*.js",
"lint:fix": "yarn run lint --fix",
"start": "electron ."
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"electron": "^22.3.25",
"html-webpack-plugin": "^3.2.0",
"standard": "^14.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"jsonfile": "^5.0.0",
"moment": "^2.29.4"
}
}
|