-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
60
61
62
{
"name": "backend",
"version": "1.0.0",
"description": "backend for kita-rescue",
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src/**",
"node_modules/**",
"package.json",
".env"
],
"exec": "ts-node ./src/index.ts",
"ext": "ts, js, json"
},
"scripts": {
"dev-build": "rm -rf dist && tsc && ls",
"dev-start": "cross-env ts-node src/index.ts",
"dev": "nodemon",
"start": "node dist/index.js",
"build": "npm run dev-build && ls"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.6.0",
"firebase-admin": "^9.2.0",
"handlebars": "^4.7.7",
"helmet": "^5.0.2",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongoose": "^6.6.0",
"mongoose-morgan": "^1.0.17",
"nodemailer": "^6.7.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^17.0.23",
"@types/nodemailer": "^6.4.6",
"@types/uuid": "^8.3.4",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.8.3"
},
"author": "dinta-kitastack",
"license": "ISC"
}