-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "instagram-mern-stack",
"version": "0.0.1",
"description": "Instagram clone builded with MERN stack",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"start:dev": "nodemon -r dotenv/config src/index.ts",
"watch": "tsc -w",
"clean": "rimraf dist/"
},
"keywords": [
"MERN",
"MongoDB",
"Express",
"Typescript",
"React",
"Node"
],
"author": "AngelQS",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"events": "^3.1.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.15",
"mongoose-unique-validator": "^2.0.3",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/events": "^3.0.0",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.21",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.5",
"@types/uuid": "^8.0.0",
"dotenv": "^8.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}