forked from bukinoshita/secret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.08 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "secret",
"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"
],
"scripts": {
"start": "NODE_ENV=production node server",
"dev": "node server",
"build": "next build",
"test": "xo",
"precommit": "lint-staged"
},
"dependencies": {
"axios": "^0.17.1",
"babel-plugin-inline-dotenv": "^1.1.1",
"babel-plugin-transform-inline-environment-variables": "^0.2.0",
"copy-text-to-clipboard": "^1.0.3",
"next": "^4.2.0-canary.1",
"nprogress": "^0.2.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"ua-parser-js": "^0.7.17"
},
"devDependencies": {
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2",
"xo": "^0.18.2"
},
"babel": {
"presets": [
"next/babel"
],
"env": {
"development": {
"plugins": [
"inline-dotenv"
]
},
"production": {
"plugins": [
"transform-inline-environment-variables"
]
}
}
},
"xo": {
"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"
]
},
"lint-staged": {
"*.js": [
"yarn test",
"prettier --semi false --single-quote --write",
"git add"
]
},
"now": {
"name": "secret",
"alias": "getsecret",
"env": {
"NODE_ENV": "production"
},
"dotenv": ".env.production"
}
}