-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 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
{
"name": "handlebars-boilerplate",
"version": "1.0.0",
"description": "Project 2 Starter",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint **/*.js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint && NODE_ENV=test mocha -u tdd --reporter spec --exit"
},
"license": "ISC",
"dependencies": {
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.12",
"mysql": "^2.16.0",
"mysql2": "^1.5.3",
"ngrok": "^3.1.0",
"nodemon": "^1.18.6",
"oauthio": "^0.3.5",
"oauthio-web": "^0.6.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"passport-twitter": "^1.0.4",
"sequelize": "^4.41.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dunkeltron/project2.git"
},
"author": "",
"bugs": {
"url": "https://github.com/dunkeltron/project2/issues"
},
"homepage": "https://github.com/dunkeltron/project2#readme"
}