-
Notifications
You must be signed in to change notification settings - Fork 1
/
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": "express-jwt-sequelize-boilerplate",
"version": "1.0.0",
"description": "This is Express.js backend boilerplate repository.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development ts-node src/index.ts",
"start:dev": "cross-env NODE_ENV=development nodemon",
"build": "tsc",
"serve:dev": "cross-env NODE_ENV=development node dist/index.js",
"serve:prod": "cross-env NODE_ENV=production node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peppapig13132/Express-JWT-Sequelize-Boilerplate.git"
},
"keywords": [
"Express.js",
"TypeScript",
"JWT",
"Sequelize",
"Boilerplate"
],
"author": "peppapig13132",
"license": "ISC",
"bugs": {
"url": "https://github.com/peppapig13132/Express-JWT-Sequelize-Boilerplate/issues"
},
"homepage": "https://github.com/peppapig13132/Express-JWT-Sequelize-Boilerplate#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"console-log-colors": "^0.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.1",
"cross-env": "^7.0.3",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}