-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "pokemon-project",
"version": "1.0.0",
"description": "RESTful API using Node.js, Express and Sequelize (mysql) to manage trainers and their pokemons.",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "module",
"keywords": [],
"author": "Romain GAUVREAU",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status": "^1.5.3",
"joi": "^17.7.0",
"json2csv": "^5.0.7",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mysql2": "^2.3.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"sequelize": "^6.28.0",
"swagger-jsdoc": "^6.2.7",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"nodemon": "^2.0.20"
}
}