-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 977 Bytes
/
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
{
"name": "meepo",
"version": "1.0.0",
"description": "Who's in the office webserver",
"repository": "https://github.com/rot-13/meepo",
"main": "index.js",
"scripts": {
"start": "node .",
"watch": "nodemon . -d 2",
"lint": "eslint .",
"deploy": "git push heroku master",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"author": "Shay Davidson, Elad Shaham, Erez Dickman",
"license": "MIT",
"dependencies": {
"camo": "^0.12.3",
"install": "^0.10.1",
"lodash": "^4.17.4",
"mixpanel": "^0.7.0",
"npm": "^5.0.4",
"process-nextick-args": "^1.0.7",
"restify": "^5.0.0"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.2",
"lint-staged": "^4.0.0",
"nodemon": "^1.11.0"
}
}