-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "mongoose-express-ts",
"version": "1.0.0",
"description": "Mongoose Node.js Express TypeScript application",
"author": "Black Axe",
"scripts": {
"tsc": "tsc",
"start": "node dist/src/server.js",
"clean": "rimraf dist/",
"compile": "run-s clean tsc start",
"dev": "nodemon",
"build": "run-s clean tsc"
},
"dependencies": {
"@dicebear/avatars-bottts-sprites": "^4.10.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"gravatar": "^1.8.2",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"request": "^2.88.0",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "0.0.40",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/gravatar": "^1.8.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/mongoose": "^5.11.96",
"@types/node": "^17.0.2",
"@types/uuid": "^8.3.3",
"concurrently": "^6.5.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}