forked from MarkKhramko/nodejs-express-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "nodejs-express-jwt",
"version": "1.0.2",
"author": "Mark Khramko <[email protected]>",
"license": "MIT",
"scripts": {
"start": "babel-node ./app/app.js",
"dev": "cross-env NODE_ENV=development nodemon",
"production": "cross-env NODE_ENV=production babel-node ./app/app.js",
"db:migrate": "babel-node ./migrator/start.js",
"db:seed": "babel-node ./migrator/seeder.js",
"lint": "eslint",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.20.1",
"core-js": "^2.6.11",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-routes-mapper": "^1.0.2",
"helmet": "^3.22.0",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.11.3",
"pug": "^3.0.1",
"sequelize": "^6.37.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@eslint/js": "^9.10.0",
"babel-plugin-module-resolver": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"nodemon": "^3.1.5"
},
"description": "Node.js Express REST API boilerplate with JWT Authentication and support for MySQL and PostgreSQL.",
"repository": {
"type": "git",
"url": "https://github.com/MarkKhramko/nodejs-express-jwt.git"
},
"homepage": "https://github.com/MarkKhramko/nodejs-express-jwt#readme",
"bugs": {
"url": "https://github.com/MarkKhramko/nodejs-express-jwt/issues"
}
}