-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (72 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "raxel-api-boilerplate-setup",
"version": "0.1",
"description": "Backend Structure built with TypeScript and Express for RESTful Web Services",
"main": ".dist/index.js",
"_moduleAliases": {
"@api": "dist/api",
"@core": "dist/core",
"@config": "dist/config",
"@databases": "dist/databases",
"@modules": "dist/modules",
"@server": "dist/server",
"@config/*": "dist/config/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rimraf ./dist && concurrently -k \"tsc -w\" \"sleep 3 && nodemon ./dist/index.js\"",
"w-node": "nodemon ./dist/index.js",
"w-ts": "tsc -w",
"build": "npx tsc",
"start": "node dist/index.js"
},
"keywords": [
"backend",
"boilerplate",
"express",
"rest-api",
"mongoose",
"typescript"
],
"author": "Brando Raxel Arias Moreno",
"license": "MIT",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-session": "^1.17.3",
"express-unless": "^2.1.3",
"express-useragent": "^1.0.15",
"google-auth-library": "^9.7.0",
"helmet": "^7.0.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^8.1.0",
"nodemailer": "^6.9.7",
"request-ip": "^3.3.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/express-useragent": "^1.0.5",
"@types/nodemailer": "^6.4.13",
"@types/request-ip": "^0.0.41",
"@types/uuid": "^9.0.6",
"concurrently": "^8.2.2",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5"
}
}