-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 805 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 805 Bytes
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
{
"name": "google-keep-clone",
"version": "1.0.0",
"description": "A small Google Keep clone built using React, Typescript and Express.",
"type": "module",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"back": "nodemon app.js",
"front": "npm start --prefix views"
},
"author": "Alexandre Vurbier",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"graceful-fs": "^4.2.10",
"helmet": "^6.0.1",
"mongoose": "^6.9.2",
"nodemon": "^2.0.20"
}
}