-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1008 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": "journalme",
"version": "1.0.0",
"description": "a trader's journal",
"type": "module",
"main": "server.js",
"engines": {
"node": "16"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"dev": "nodemon server/server.js",
"build": "yarn --cwd client install && NODE_OPTIONS=--openssl-legacy-provider CI=false yarn --cwd client build"
},
"author": "XETA",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.27.0",
"connect-mongodb-session": "^2.4.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"formidable": "^1.2.2",
"mongodb": "^3.6.10",
"nodemailer": "^6.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^6.2.0",
"eslint": "^7.31.0",
"eslint-plugin-react": "^7.24.0"
}
}