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.
- Loading branch information
1 parent
544343d
commit 482707d
Showing
1 changed file
with
30 additions
and
10 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,13 +1,18 @@ | ||
{ | ||
"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.", | ||
"version": "0.0.3", | ||
"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": "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", | ||
|
@@ -35,27 +40,42 @@ | |
"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": [ | ||
|