-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "postium_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js --env MODE=production",
"dev": "nodemon --watch src/**/* --exec ts-node --files -r tsconfig-paths/register src/index.ts --config tsconfig.json --env MODE=development",
"build": "tsc",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@types/sequelize": "^4.28.15",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"pg": "^8.11.0",
"sequelize": "^6.31.1",
"typescript": "^5.0.4",
"winston": "^3.9.0"
}
}