-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "xpensefox",
"version": "1.0.0",
"description": "expensefox app",
"main": "server.ts",
"scripts": {
"build": "npx tsc",
"start": "nodemon --config nodemon.json",
"format": "yarn prettier . --write",
"format:check": "npx prettier . --check",
"migration:run": "sequelize-cli db:migrate",
"migration:revert": "sequelize-cli db:migrate:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saranvlmna/express-server-template.git"
},
"useror": "saranjith_p",
"license": "ISC",
"bugs": {
"url": "https://github.com/saranvlmna/express-server-template.git/issues"
},
"homepage": "https://github.com/saranvlmna/express-server-template.git#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.3",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.2",
"nodemon": "^3.0.3",
"pg": "^8.11.3",
"sequelize": "^6.37.1",
"sequelize-cli": "^6.6.2",
"sequelize-typescript": "^2.1.6"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.20",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}