-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "mood-journal",
"version": "1.0.0",
"description": "A digital journal app with mood tracking.",
"main": "index.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server/index.js",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayush0402/mood-journal.git"
},
"author": "Ayush Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/ayush0402/mood-journal/issues"
},
"homepage": "https://github.com/ayush0402/mood-journal#readme",
"dependencies": {
"apos-to-lex-form": "^1.0.5",
"body-parser": "^1.20.2",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase-admin": "^11.5.0",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"natural": "^6.2.0",
"openai": "^3.2.1",
"spelling-corrector": "^3.0.0",
"stopword": "^2.0.8"
}
}