-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.75 KB
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
{
"name": "first-node-js",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "index.js",
"author": "PPhatDev <info.sophat@gmail.com>",
"scripts": {
"dev": "node --watch ./index.js --host=0.0.0.0",
"start": "node ./index.js --host=0.0.0.0",
"create:controller": "node ./commands/cli/index.js --controller",
"create:route": "node ./commands/cli/index.js --route",
"create:model": "node ./commands/cli/index.js --model",
"create:rcm": "node ./commands/cli/index.js --rcm",
"db:create": "node ./commands/cli/index.js --create",
"db:create-views": "node ./commands/cli/index.js --create-views",
"db:migrate": "node ./commands/cli/index.js --migrate",
"db:seeds": "node ./commands/cli/index.js --seeds"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"compression": "^1.8.1",
"core-js": "^3.36.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"express-session": "^1.18.2",
"express-validator": "^7.3.0",
"fs-extra": "^11.3.0",
"helmet": "^7.1.0",
"i": "^0.3.7",
"ip": "^2.0.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"momentjs": "^2.0.0",
"multer": "^2.0.2",
"npm": "^11.6.4",
"passport": "^0.7.0",
"passport-http-bearer-base64": "^1.0.3",
"perf_hooks": "^0.0.1",
"pg": "^8.11.5",
"pm2": "^6.0.9",
"serverless-http": "^3.2.0",
"sharp": "^0.33.5",
"sqlstring": "^2.3.3"
}
}