forked from CyanSalt/todu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "todu",
"version": "1.7.0",
"productName": "TODU",
"author": "CyanSalt",
"description": "An awesome todo list",
"main": "window.js",
"scripts": {
"deps": "npm install cross-env css-loader electron electron-packager extract-text-webpack-plugin vue vue-loader vue-template-compiler webpack --save-dev",
"build-app": "webpack --progress --hide-modules",
"build-package": "node makefile.js",
"debug-package": "electron .",
"build": "cross-env NODE_ENV=production npm run build-app && npm run build-package",
"dev": "npm run build-app && npm run debug-package",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/CyanSalt/todu.git"
},
"license": "MIT",
"devDependencies": {
"cross-env": "^5.1.3",
"css-loader": "^0.28.8",
"electron": "^1.8.1",
"electron-packager": "^9.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"vue": "^2.5.13",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0"
}
}