-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.05 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
{
"name": "maintainerswanted.com",
"version": "2.4.2",
"private": true,
"scripts": {
"start": "if-env NODE_ENV=production && node ./bin/www || nodemon ./bin/www",
"dev": "concurrently \"yarn start\" \"cd client && yarn start\"",
"heroku-postbuild": "cd client && yarn install --network-timeout 1000000 && yarn run build",
"heroku-prebuild": "yarn config delete proxy && npm config rm https-proxy && npm config rm proxy && yarn install --production=false --network-timeout 1000000",
"bump": "yarn version --patch",
"expose-web": "ngrok http 5000",
"lint": "eslint --fix . && cd client/ && yarn lint"
},
"homepage": "https://maintainerswanted.com",
"repository": {
"type": "git",
"url": "git://github.com/flxwu/maintainerswanted.com.git"
},
"engines": {
"node": "8.11.4",
"yarn": "1.9.4"
},
"eslintConfig": {
"extends": [
"standard"
],
"rules": {
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": 0
}
},
"eslintIgnore": [
"client/*",
"node_modules/*"
],
"dependencies": {
"@octokit/rest": "^15.10.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"connect-session-firebase": "^5.13.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-session": "^1.15.6",
"firebase": "^5.4.1",
"if-env": "^1.0.4",
"morgan": "~1.9.0"
},
"devDependencies": {
"concurrently": "^4.0.1",
"eslint": "^4.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.0.0-rc.13",
"ngrok": "^3.0.1",
"nodemon": "^1.18.4"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
}
}