forked from therealklanni/az-webdevs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 KB
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
{
"name": "az-webdevs",
"version": "1.0.0",
"description": "az-webdevs.io",
"main": "server.js",
"private": true,
"scripts": {
"lint": "standard",
"postinstall": "npm prune",
"prestart": "npm run start:mongo",
"start": "nodemon -e js,hbs,scss,yml --exec \"nf start\"; npm stop",
"stop": "npm run stop:mongo",
"start:mongo": "mongod --config mongod.conf --fork",
"stop:mongo": "killall -9 mongod",
"sass": "node-sass -w scss/main.scss -o public/styles/",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/therealklanni/slack-invite-request.git"
},
"bugs": {
"url": "https://github.com/therealklanni/slack-invite-request/issues"
},
"keywords": [
"slack",
"invite"
],
"author": "Kevin Lanni (https://github.com/therealklanni)",
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"body-parser": "^1.14.2",
"change-case": "^2.3.1",
"connect-mongo": "^1.1.0",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.13.0",
"got": "^6.1.1",
"js-yaml": "^3.5.2",
"lodash": "^4.2.0",
"mongoose": "^4.4.0",
"mongoose-findorcreate": "^0.1.2",
"morgan": "^1.6.1",
"multer": "^1.1.0",
"node-sass-middleware": "^0.9.7",
"passport": "^0.3.2",
"passport-github2": "^0.1.9"
},
"devDependencies": {
"foreman": "^1.4.1",
"nodemon": "^1.8.1",
"standard": "^5.4.1"
},
"babel": {
"presets": [
"es2015"
]
}
}