forked from sophieluehmann/project2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "sesh",
"version": "1.0.1",
"description": "task tracking system",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint --quiet .",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha --reporter spec --exit"
},
"license": "ISC",
"homepage": "https://github.com/sophieluehmann/project2#readme",
"repository": {
"type": "git",
"url": "https://github.com/sophieluehmann/project2.git"
},
"bugs": {
"url": "https://github.com/sophieluehmann/project2/issues"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"passport-session": "^1.0.2",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0"
},
"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": "^8.1.0",
"prettier": "^1.17.1"
}
}