forked from bukinoshita/secret
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package.json
repository
(bukinoshita#4)
- Loading branch information
1 parent
fc774e3
commit 544343d
Showing
1 changed file
with
10 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
{ | ||
"name": "secret", | ||
"version": "0.0.2", | ||
"description": "send a message through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.", | ||
"description": | ||
"send a message through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.", | ||
"main": "index.js", | ||
"repository": "https://github.com/bukinoshita/secret.git", | ||
"repository": "bukinoshita/secret.git", | ||
"author": "Bu Kinoshita <[email protected]>", | ||
"license": "MIT", | ||
"keywords": [ | ||
"secret", | ||
"getsecret", | ||
"safe", | ||
"private", | ||
"encrypted" | ||
], | ||
"keywords": ["secret", "getsecret", "safe", "private", "encrypted"], | ||
"scripts": { | ||
"start": "NODE_ENV=production node server", | ||
"dev": "node server", | ||
|
@@ -40,42 +35,27 @@ | |
"xo": "^0.18.2" | ||
}, | ||
"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"] | ||
} | ||
} | ||
}, | ||
"xo": { | ||
"extends": [ | ||
"prettier", | ||
"prettier/react", | ||
"plugin:react/recommended" | ||
], | ||
"extends": ["prettier", "prettier/react", "plugin:react/recommended"], | ||
"rules": { | ||
"import/no-extraneous-dependencies": 0, | ||
"import/no-unresolved": 0, | ||
"react/no-unescaped-entities": 0, | ||
"react/prop-types": 0, | ||
"react/display-name": 0 | ||
}, | ||
"ignores": [ | ||
"node_modules", | ||
"static/*.js" | ||
], | ||
"globals": [ | ||
"document" | ||
] | ||
"ignores": ["node_modules", "static/*.js"], | ||
"globals": ["document"] | ||
}, | ||
"lint-staged": { | ||
"*.js": [ | ||
|