forked from LATAMPARTS/autority-api-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
53
54
{
"private": true,
"name": "autority-api-challenge",
"version": "1.0.0",
"description": "Boilerplate for api to Autority challenge",
"scripts": {
"build": "NODE_ENV=production babel src --out-dir dist",
"start": "NODE_ENV=production node ./dist/bin/www.js",
"dev": "nodemon --ignore dist/ --ignore test/ --exec babel-node ./src/bin/www.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "NODE_ENV=test mocha --require @babel/register --exit",
"migrate": "npx sequelize-cli db:migrate"
},
"dependencies": {
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-validator": "^6.4.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"nodemailer": "^6.4.16",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.20.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"sequelize-cli": "^6.4.1",
"sqlite3": "^5.1.7"
},
"engines": {
"node": "16",
"npm": "8"
}
}