-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
45
46
47
48
49
50
51
{
"name": "proyecto4",
"version": "0.0.0",
"main": "app.js",
"private": true,
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"clientinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"render-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"engines": {
"node": "14.17.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^7.5.0",
"connect-mongo": "^4.4.1",
"express": "~4.16.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.2",
"helmet": "^4.6.0",
"joi": "^17.4.0",
"joi-objectid": "^3.0.1",
"joi-password-complexity": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.6",
"mongoose": "^5.12.10",
"morgan": "^1.10.0",
"nanoid": "^3.1.23",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.20",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"stripe": "^8.155.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"debug": "~2.6.9",
"dotenv": "^9.0.2",
"jest": "^27.0.1",
"jshint": "^2.12.0",
"nodemon": "^2.0.20",
"supertest": "^6.1.3"
},
"author": "Nicolas Gasco",
"license": "ISC"
}