-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "tech_blog",
"version": "1.0.0",
"description": "[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)",
"main": "server.js",
"scripts": {
"test": "jest --watchAll --coverage",
"seed": "node seeds/index.js",
"watch": "nodemon server.js",
"start": "node server.js",
"lint": "npx eslint **/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.0",
"connect-session-sequelize": "^7.0.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"handlebars": "^4.7.6",
"mysql2": "^2.2.5",
"phone-number-formats": "^2.2.1",
"sequelize": "^6.3.5"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevecalla/long-trails.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/stevecalla/long-trails/issues"
},
"homepage": "https://github.com/stevecalla/long-trails#readme"
}