-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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": "Webeam",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"repository": "https://github.com/IIC2513-2022-2/grupo-Webeam-backend.git",
"author": "ANTONIA BLANCO <[email protected]>",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^7.5.0",
"@koa/cors": "^3.4.1",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-jwt": "^4.0.3",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"nodemon": "^2.0.19",
"pg": "^8.8.0",
"sequelize": "^6.25.1",
"sequelize-cli": "^6.5.1"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"test": "cross-env NODE_ENV=test jest --runInBand",
"pretest": "cross-env NODE_ENV=test yarn run migrate:reset",
"migrate:reset": "yarn sequelize-cli db:drop && yarn run setup_test_db",
"setup_test_db": "yarn sequelize-cli db:create && yarn sequelize-cli db:migrate && yarn sequelize-cli db:seed:all --seeders-path src/seeders/test_seeds"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.3.1",
"supertest": "^6.3.1"
}
}