-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "dsw-tp-backend",
"version": "1.0.0",
"description": "Backend tp dsw",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --testTimeout=10000",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate ",
"migrate": "npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francobidart/dsw-tp-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/francobidart/dsw-tp-backend/issues"
},
"homepage": "https://github.com/francobidart/dsw-tp-backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.6.0",
"sequelize": "^6.32.1",
"sequelize-fixtures": "^1.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"sequelize-cli": "^6.6.1",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js?$"
}
}