-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
39
40
41
{
"name": "note-it",
"version": "1.0.0",
"description": "Note-taking app",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/somanshurath/note-it.git"
},
"author": "somanshurath",
"license": "MIT",
"bugs": {
"url": "https://github.com/somanshurath/note-it/issues"
},
"homepage": "https://github.com/somanshurath/note-it#readme",
"dependencies": {
"@redux-devtools/extension": "^3.2.6",
"@reduxjs/toolkit": "^1.9.7",
"bcryptjs": "^2.4.3",
"config": "^3.3.9",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"gravatar": "^1.8.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.0.1"
}
}