-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.76 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.76 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "tsc5",
"version": "0.1.0",
"description": "Materia TSC5 - Cuatrimestre 2 del año 2020",
"engines": {
"node": "10.14.1",
"npm": "6.4.1"
},
"scripts": {
"swagger-autogen": "node ./app/swagger.js",
"console": "node console.js",
"cover": "NODE_ENV=testing istanbul cover ./node_modules/mocha/bin/_mocha test/app.spec.js",
"test": "NODE_ENV=testing ./node_modules/mocha/bin/_mocha --timeout 6000 --exit test/app.spec.js",
"test-inspect": "NODE_ENV=testing node --inspect-brk ./node_modules/mocha/bin/_mocha test/app.spec.js",
"eslint-check": "eslint --print-config .eslintrc.js --ignore-pattern ./.eslintrc.js | eslint-config-prettier-check",
"lint": "eslint \"**/*.js\" --ignore-pattern ./.eslintrc.js",
"lint-diff": "git diff --diff-filter=ACM --name-only --cached --relative | grep \\\\.js$ | xargs eslint",
"lint-fix": "npm run lint -- --fix",
"outdated": "npm outdated --depth 0",
"pretest": "npm run lint",
"start-dev": "nodemon --inspect server.js",
"prestart-dev": "npm run lint",
"start": "./node_modules/.bin/nodemon --inspect server.js",
"seed": "sequelize db:seed:all",
"create-seed": "sequelize seed:generate --name",
"migrations": "./node_modules/.bin/sequelize db:migrate"
},
"cacheDirectories": [
"node_modules"
],
"main": "app.js",
"author": "Wolox",
"homepage": "git@github.com:martinambrueso/MapaDeEconomiaPopular.git",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:martinambrueso/MapaDeEconomiaPopular.git"
},
"bugs": {
"url": "git@github.com:martinambrueso/MapaDeEconomiaPopular.git",
"email": "tls@wolox.com.ar"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"crypto-js": "^4.0.0",
"express": "^4.16.2",
"express-wolox-logger": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"jwt-simple": "^0.5.1",
"mysql2": "^2.2.5",
"pg": "^8.6.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"swagger-ui-express": "^4.0.7",
"umzug": "^2.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-wolox": "^4.0.0",
"eslint-config-wolox-node": "^3.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^4.2.3",
"istanbul": "^0.4.3",
"mocha": "^7.1.0",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^2.0.2",
"prettier": "^1.15.3",
"prettier-eslint": "^9.0.1",
"prompt": "^1.0.0",
"swagger-autogen": "^2.8.2"
}
}