-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 920 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 920 Bytes
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
{
"name": "brim-loft",
"version": "1.0.0",
"description": "just to an edit of some kind",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha --recursive",
"start": "node server.js",
"seed": "node seeds/index.js",
"devstart": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-session-sequelize": "^7.0.4",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-handlebars": "^5.3.5",
"express-session": "^1.17.1",
"handlebars": "^4.7.8",
"mongoose": "^8.1.1",
"mysql2": "^2.2.5",
"sequelize": "^6.35.2"
},
"devDependencies": {
"chai": "^5.0.3",
"chai-http": "^4.4.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.3",
"prettier": "^2.1.2"
},
"directories": {
"test": "test"
}
}