-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mongoosejs/double": "^0.3.0",
"@types/cors": "^2.8.13",
"axios": "^1.6.8",
"bcrypt-ts": "^3.0.0",
"bcryptjs": "^2.4.3",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"googleapis": "^134.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.1",
"rimraf": "^4.1.2",
"util": "^0.12.5",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.13.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
},
"nodemonConfig": {
"ext": "ts",
"exec": "npm run build && npm start"
}
}