-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "docker_node_mongo_starter",
"version": "1.0.0",
"description": "docker starter with node js and mongodb services",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "npm run db:migrate && npx mocha ./tests/*.js --exit",
"db:create": "npx sequelize-cli db:create",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo",
"db:drop": "npx sequelize-cli db:drop"
},
"author": "Alexandre PEREON",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"chai": "^5.1.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.13",
"mocha": "^10.3.0",
"mysql2": "^3.9.2",
"prom-client": "^15.1.1",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7",
"supertest": "^6.3.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^2.0.3"
}
}