-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "ProjectTwo",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "npm run lint",
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JPBrickhouse/ProjectTwo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JPBrickhouse/ProjectTwo/issues"
},
"homepage": "https://github.com/JPBrickhouse/ProjectTwo#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"dotenv": "8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.16.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5",
"sequelize-auto": "^0.6.3"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"mocha": "^8.1.3",
"prettier": "^1.13.7"
}
}