-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 906 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
36
37
38
39
40
{
"name": "phrasepilot",
"version": "1.0.0",
"description": "Language-learning application with personalized word suggestions.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"start-dev": "nodemon app.js"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Mustafa Özkan",
"license": "ISC",
"keywords": [
"language-learning",
"Node.js",
"React",
"PostgreSQL"
],
"devDependencies": {
"nodemon": "^3.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.7",
"pg": "^8.11.3",
"sequelize": "^6.37.1"
}
}