-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "node-typescript-init",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"local": "cross-env NODE_ENV=local nodemon",
"dev": "cross-env NODE_ENV=development nodemon",
"prod": "cross-env NODE_ENV=production nodemon",
"build-dev": "tsc && cross-env NODE_ENV=development node dist",
"build-prod": "tsc && cross-env NODE_ENV=production node dist",
"start-dev": "cross-env NODE_ENV=development pm2 start dist",
"start-prod": "cross-env NODE_ENV=production pm2 start dist",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.25",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.7.1",
"ts-node": "^10.7.0",
"typescript": "^4.7.4"
},
"dependencies": {
"app-root-path": "^3.1.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.37",
"morgan": "^1.10.0",
"nanoid": "3.3.4",
"pg": "^8.7.3",
"process": "^0.11.10",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}