-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "word-of-the-day",
"version": "0.0.1",
"description": "Show a word of the day from a local database",
"main": "server.js",
"engines": {
"node": "^6.11.1",
"npm": "^3.10.10"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mistermark/word-of-the-day.git"
},
"keywords": [
"word",
"dictionary",
"language"
],
"author": "Mark de Jong <[email protected]>",
"license": "SEE LICENSE IN LICENSE.MD",
"bugs": {
"url": "https://github.com/mistermark/word-of-the-day/issues"
},
"homepage": "https://github.com/mistermark/word-of-the-day#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"bootstrap": "^4.0.0-alpha.6",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"express-session": "^1.15.3",
"hbs": "^4.0.1",
"method-override": "^2.3.9",
"mongoose": "^4.11.1",
"passport": "^0.3.2",
"morgan": "^1.8.2",
"passport-google-oauth": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^6.4.1",
"nodemon": "^1.11.0"
}
}