-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.41 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.41 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
{
"name": "project-2-interactive-full-stack-application",
"version": "1.0.0",
"description": "A web application that attempts to visualize time in a new way - in hopes of providing accessible time management",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"seeds": "node ./seeds/seeds.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThomasCalle/Project-2-Interactive-Full-Stack-Application.git"
},
"author": "Stefan Marinov, Stephen Cardie, Thomas Calle",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomasCalle/Project-2-Interactive-Full-Stack-Application/issues"
},
"homepage": "https://github.com/ThomasCalle/Project-2-Interactive-Full-Stack-Application#readme",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.4",
"cors": "^2.8.5",
"d3": "^7.8.2",
"dayjs": "^1.11.7",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-handlebars": "^5.3.5",
"express-session": "^1.17.1",
"handlebars": "^4.7.6",
"mysql2": "^2.3.3",
"sequelize": "^6.3.5"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2"
}
}