-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "timely-vue",
"version": "1.0.0",
"main": "dist-main/main.bundle.js",
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"date-fns": "^2.16.1",
"electron": "^10.1.3",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.1",
"html-webpack-plugin": "^4.5.0",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.3",
"postcss-nested": "^5.0.1",
"style-loader": "^1.3.0",
"vue-devtools": "^5.1.4",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "NODE_ENV=dev webpack --config webpack.main.config.js && NODE_ENV=dev concurrently --kill-others \"webpack-dev-server --config webpack.renderer.config.js\" \"electron .\"",
"lint": "eslint .",
"build-main": "NODE_ENV=prod webpack --config webpack.main.config.js",
"build-renderer": "NODE_ENV=prod webpack --config webpack.renderer.config.js",
"app": "NODE_ENV=prod electron ."
},
"dependencies": {
"tailwindcss": "^1.8.12",
"vue": "^2.6.12"
}
}