-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 1.92 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
{
"name": "project2-team4",
"version": "1.0.0",
"description": "Project2 Starter with Express, Handlebars, Sequelize, and Authentication with Passport.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint . --ext .js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test AUTH_SECRET=test TU=root mocha -u tdd --reporter spec --exit",
"local-test": "npm run lint && cross-env NODE_ENV=test mocha -ui bdd --reporter spec --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjfonke/project2-team4.git"
},
"engines": {
"npm": "5.7.1",
"node": "11.12.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjfonke/project2-team4/issues"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"homepage": "https://github.com/mjfonke/project2-team4#readme",
"dependencies": {
"bcrypt": "^3.0.0",
"chart.js": "^2.8.0",
"connect-session-sequelize": "^6.0.0",
"cookie-parser": "^1.4.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"express-session": "^1.15.6",
"helmet": "^3.16.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^5.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
}
}