-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
{
"name": "ellebkey-app",
"version": "2.4.0",
"description": "A Boilerplate application for building REST APIs using node, express, sequelize and mongoose with ES6 with code coverage",
"author": "Joel Barranco <hello@joelbarranco.io>",
"engines": {
"node": ">=14.17.3",
"npm": ">=6.14.13",
"typescript": "4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"lint": "eslint -c .eslintrc.js --quiet ./src",
"lint:warning": "eslint -c .eslintrc.js ./src",
"build": "tsc && tsc-alias",
"deploy:prod": "npm run build && mkdir production && cp -r db-migrations/ release/ package.json .sequelizerc production/"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"date-fns": "^2.24.0",
"dotenv": "^8.2.0",
"express": "4.17.1",
"express-winston": "4.0.3",
"glob": "^7.1.6",
"helmet": "3.23.3",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"mongoose": "^5.13.2",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/glob": "^7.1.3",
"@types/helmet": "0.0.47",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.171",
"@types/node": "^14.0.25",
"@types/sequelize": "^4.28.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^7.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"husky": "^7.0.2",
"sequelize-cli": "^6.2.0",
"ts-node": "^8.10.2",
"tsc-alias": "^1.3.10",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"license": "MIT"
}