forked from AgroMart/api-dicionario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "express-starter",
"version": "1.0.0",
"description": "A boilerplate for Node.js api projects",
"repository": {
"type": "git",
"url": "https://github.com/mucahitnezir/express-starter.git"
},
"license": "MIT",
"author": {
"name": "Mücahit Nezir",
"email": "[email protected]"
},
"scripts": {
"build": "babel src --out-dir dist",
"start": "node ./dist/bin/www.js",
"start: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",
"db:migrate": "npx sequelize-cli db:migrate"
},
"dependencies": {
"@sentry/node": "^6.7.2",
"@sentry/tracing": "^6.7.2",
"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.8.0",
"pg-hstore": "^2.3.4",
"redis": "^3.1.1",
"sequelize": "^6.20.1",
"swagger-ui-express": "^4.1.4"
},
"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"
},
"engines": {
"node": "16",
"npm": "8"
}
}