forked from mrwu42/project2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 972 Bytes
/
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
{
"name": "covid-quarantive-pets",
"version": "1.0.0",
"description": "Project 2 Starter",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha -u tdd --reporter spec --exit",
"watch": "nodemon server.js"
},
"license": "ISC",
"author": "Justin Acosta, Helen Maschmeyer, Tim Shaffer, Wayne Wu",
"dependencies": {
"bcryptjs": "2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mysql": "^2.18.1",
"mysql2": "^1.7.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^5.21.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.1.4",
"prettier": "^1.17.1"
}
}