-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
42
43
44
45
46
{
"name": "notesapp",
"version": "1.0.0",
"description": "notes taking and sharing app",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev -r dotenv/config --transpileOnly --no-notify src",
"start": "node ./build/index.js"
},
"keywords": [],
"author": "Roshan Acharya",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-mongo-sanitize": "^1.3.1",
"@types/express-rate-limit": "^5.0.0",
"@types/helmet": "^0.0.46",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.15",
"@types/morgan": "^1.9.0",
"@types/node": "^13.13.5",
"@types/redis": "^2.8.20",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.1.3",
"express-validator": "^6.4.1",
"helmet": "^3.22.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.12",
"morgan": "^1.10.0",
"redis": "^3.1.1"
},
"devDependencies": {
"concurrently": "^5.2.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}