Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Feb 13, 2018
1 parent 145f604 commit 199e503
Showing 1 changed file with 34 additions and 10 deletions.
44 changes: 34 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Taskr",
"version": "0.4.0",
"version": "1.0.0",
"description": "A simple task manager app",
"main": "main/index.js",
"repository": "https://github.com/bukinoshita/taskr.git",
Expand All @@ -17,17 +17,26 @@
},
"build": {
"appId": "taskr",
"files": ["**/*", "!renderer", "renderer/out"],
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"target": ["squirrel"],
"target": [
"squirrel"
],
"icon": "main/static/icon.ico"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "main/static/icon.icns"
},
"linux": {
"target": ["AppImage", "deb"]
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
Expand Down Expand Up @@ -63,7 +72,11 @@
"xo": "^0.18.2"
},
"xo": {
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"rules": {
"react/no-unescaped-entities": 0,
"react/react-in-jsx-scope": 0,
Expand All @@ -75,8 +88,13 @@
"new-cap": 0,
"import/prefer-default-export": 0
},
"ignores": ["node_modules"],
"globals": ["localStorage", "document"]
"ignores": [
"node_modules"
],
"globals": [
"localStorage",
"document"
]
},
"lint-staged": {
"*.js": [
Expand All @@ -86,13 +104,19 @@
]
},
"babel": {
"presets": ["next/babel"],
"presets": [
"next/babel"
],
"env": {
"development": {
"plugins": ["inline-dotenv"]
"plugins": [
"inline-dotenv"
]
},
"production": {
"plugins": ["transform-inline-environment-variables"]
"plugins": [
"transform-inline-environment-variables"
]
}
}
}
Expand Down

0 comments on commit 199e503

Please sign in to comment.