-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "kanbanize",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development bin/start-dev.sh",
"start": "micro",
"ngrok": "node bin/start-ngrok.js",
"precommit": "lint-staged",
"lint": "xo",
"deploy": "now && now alias"
},
"xo": {
"ignores": [
"node_modules/**/*",
".env",
".env.sample"
],
"extends": "prettier",
"rules": {
"unicorn/no-process-exit": 0
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"dependencies": {
"async": "^2.6.0",
"github-api": "^3.0.0",
"graphql-request": "^1.8.2",
"joi": "^13.1.2",
"micro": "^9.1.4"
},
"devDependencies": {
"concurrently": "^3.6.0",
"dotenv-safe": "^6.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"micro-dev": "^2.1.0",
"ngrok": "^3.0.1",
"prettier": "^1.7.3",
"xo": "^0.18.2"
}
}