forked from render-examples/express-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 833 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
{
"name": "solparts",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "mocha",
"test:watch": "mocha --watch",
"testInicial": "echo \"Running initial tests...\" && mocha"
},
"dependencies": {
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^7.1.7",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.7",
"express": "~4.16.1",
"express-session": "^1.18.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"pug": "^3.0.3",
"sequelize": "^6.37.5"
},
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^11.0.1",
"nodemon": "^2.0.15"
}
}